Search found 22 matches

by z.g
Fri Apr 13, 2012 12:07 am
Forum: Announcements
Topic: devkitARM release 38 and associated libraries
Replies: 2
Views: 15299

Re: devkitARM release 38 and associated libraries

#include <fcntl.h> includes \devkitARM\arm-eabi\sys-include\sys\fcntl.h. this one doesn't contain O_BINARY declaration.
by z.g
Mon Sep 19, 2011 11:01 pm
Forum: DS/DSi Development
Topic: MODE_FIFO flickering/corrupt
Replies: 10
Views: 19102

Re: MODE_FIFO flickering/corrupt

DC_FlushRange(buffer,size);
by z.g
Sat Jun 25, 2011 10:20 am
Forum: Announcements
Topic: devkitARM release 33
Replies: 4
Views: 12082

Re: devkitARM release 33

WinterMute wrote:Seems like a bug, sorry.
anyway it doesn't work :( i copy linker to needed name and got errors like described here.
by z.g
Fri Jun 24, 2011 10:38 pm
Forum: Announcements
Topic: devkitARM release 33
Replies: 4
Views: 12082

Re: devkitARM release 33

i got collect2: cannot find 'ld' then tried linking something with -flto flag. process monitor show that collect2 tried to open folowing files: \devkitARM\arm-eabi\bin\arm-eabi-ld.exe \devkitARM\bin\arm-eabi-arm-eabi-ld.exe looks like unnecessary prefix used. is it my setup problem or bug in devkita...
by z.g
Mon Oct 25, 2010 7:04 pm
Forum: Announcements
Topic: A surprise
Replies: 8
Views: 16716

Re: A surprise

btw, dsi has nonzero 16th powermanagement register. is it has something practical meaning? found time for some reserching. writePowerManagement(0x10,1) resets dsi to system menu (do same thing as shot press to power button). 0x8 and 0x4 switch on/off backlight on screens. 0x2 — can be set but looks...
by z.g
Sun Oct 17, 2010 10:35 am
Forum: DS/DSi Development
Topic: strange thing in fifo code
Replies: 1
Views: 2806

strange thing in fifo code

in fifosystem.c: } else if (FIFO_IS_ADDRESS(data)) { volatile void * address = FIFO_UNPACK_ADDRESS(data); REG_IME=0; fifo_receive_queue.head = FIFO_BUFFER_GETNEXT(block); if (fifo_address_func[channel]) { fifo_freeBlock(block); REG_IME=1; fifo_address_func[channel]( (void*)address, fifo_address_data...
by z.g
Sat Oct 02, 2010 1:50 pm
Forum: devkitARM
Topic: long long support in printf/scanf
Replies: 1
Views: 3646

long long support in printf/scanf

is there any real reason to build newlib without --enable-newlib-io-long-long?
by z.g
Thu Sep 02, 2010 8:17 am
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23588

Re: send with big buffer

try use instead

Code: Select all

shutdown(Socket, SHUT_RDWR);
closesocket(Socket);
this one

Code: Select all

shutdown(Socket,0);
for(int i=0;i<60;i++) swiWaitForVBlank();
closesocket(Socket);
i found this snippet here at forum. this is dont' solve problem to perfect state but to usable :)
by z.g
Sat Aug 28, 2010 4:01 pm
Forum: Announcements
Topic: A surprise
Replies: 8
Views: 16716

Re: A surprise

btw, dsi has nonzero 16th powermanagement register. is it has something practical meaning?
by z.g
Tue Apr 27, 2010 11:45 am
Forum: DS/DSi Development
Topic: systemSleep
Replies: 3
Views: 3633

Re: systemSleep

elhobbs wrote:I think the number is a loop counter not a direct meaurement of time
it is.