Re: [Milkymist-devel] softusb-input/navre.ld link script incorrect?

2011-08-09 Thread Xiangfu Liu
On 08/10/2011 01:14 AM, JP wrote: > > On 8/9/11 5:14 AM, Sebastien Bourdeauducq wrote: >> On Mon, 2011-08-08 at 15:49 -0700, JP wrote: >>> - .bss : AT (ADDR (.bss)) >>> + .bss : AT (ADDR (.text) + SIZEOF (.text) + SIZEOF (.data)) Hi after apply this patch. I get exactly same bin file in

Re: [Milkymist-devel] softusb-input/navre.ld link script incorrect?

2011-08-09 Thread JP
So the error I get without the patch is this: avr-gcc -o softusb-input.elf -mmcu=avr2 -mno-interrupts -Wall -Os crt0.S main.c debug.c crc.c libc.c -nostdlib -Wl,-T -Wl,navre.ld /usr/local/CrossPack-AVR-20100115/lib/gcc/avr/4.3.3/../../../../avr/bin/ld: section .bss [ -> 000f] overl

Re: [Milkymist-devel] softusb-input/navre.ld link script incorrect?

2011-08-09 Thread Sebastien Bourdeauducq
On Mon, 2011-08-08 at 15:49 -0700, JP wrote: > - .bss : AT (ADDR (.bss)) > + .bss : AT (ADDR (.text) + SIZEOF (.text) + SIZEOF (.data)) I don't think this is correct. With the AVR architecture, there are separate memories for code and data. Even though e.g. the .text and .bss sections may b

Re: [Milkymist-devel] patch language guide wiki page

2011-08-09 Thread Sebastien Bourdeauducq
On Tue, 2011-08-09 at 11:59 +0800, Xiangfu Liu wrote: > for now I only know the picture not working. I saw the milkydrop can > load picture(*.tga). m1 not That's a projectM extension (afaik). I'll probably add that to FN 1.1 (with PNG pictures), as everyone is asking about that :) Plus it's not a

Re: [Milkymist-devel] patch language guide wiki page

2011-08-09 Thread Sebastien Bourdeauducq
On Mon, 2011-08-08 at 23:37 -0700, August wrote: > Is this just a opacity difference on the video. Yes, the operation performed is: destination pixel = destination pixel + video_a*video in pixel (with saturation when going out of range). Btw, there is also the Flickernoise handbook: https://githu

Re: [Milkymist-devel] patch language guide wiki page

2011-08-09 Thread Xiangfu Liu
On 08/09/2011 02:37 PM, August wrote: > What's the difference when you enter > > Video_a=1 > Or > Video_a=.9 > > Is this just a opacity difference on the video. yes. 0.9 and 1 not big different. when I set to 0.2 the screen go to very dark, like the background is black. -- Best Regards Xian