Witam
Mam problem z winAvr.
Podczas próby kompilacji program zwraca mi błąd:
> "make.exe" all
AllocationBase 0x0, BaseAddress 0x71590000, RegionSize 0x170000, State 0x10000
C:\WinAVR-20070525\utils\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 487
AllocationBase 0x0, BaseAddress 0x71590000, RegionSize 0x170000, State 0x10000
C:\WinAVR-20070525\utils\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 487
-------- begin --------
avr-gcc (GCC) 4.1.2 (WinAVR 20070525)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
AllocationBase 0x0, BaseAddress 0x71590000, RegionSize 0x170000, State 0x10000
C:\WinAVR-20070525\utils\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 487
make.exe: *** [sizebefore] Error 1
> Process Exit Code: 2
> Time Taken: 00:02
Nie bardzo wiem o co chodzi, żadna z wersji programu nie działa prawidłowo.Zawsze wywala mi taki błąd.
Na innym kompie, też s systemem XP kompiluje mi prawidłowo.
Jeśli ktoś spotkał się z takim cudem i wie jak to rozwiązać to proszę o poradę, bo już zaczynam rwać włosy z głowy.
Pozdrawiam
P.S
#include "avr/io.h"
int main (void)
{
DDRA=_BV(PA0);
while(1)
{
PORTA|=_BV(PA0);
for (long int i=0;i<1000000;i++);
PORTA&=~_BV(PA0);
}
return(0);
}
To jest przykładowy program który próbuję skompilować
Mam problem z winAvr.
Podczas próby kompilacji program zwraca mi błąd:
> "make.exe" all
AllocationBase 0x0, BaseAddress 0x71590000, RegionSize 0x170000, State 0x10000
C:\WinAVR-20070525\utils\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 487
AllocationBase 0x0, BaseAddress 0x71590000, RegionSize 0x170000, State 0x10000
C:\WinAVR-20070525\utils\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 487
-------- begin --------
avr-gcc (GCC) 4.1.2 (WinAVR 20070525)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
AllocationBase 0x0, BaseAddress 0x71590000, RegionSize 0x170000, State 0x10000
C:\WinAVR-20070525\utils\bin\sh.exe: *** Couldn't reserve space for cygwin's heap, Win32 error 487
make.exe: *** [sizebefore] Error 1
> Process Exit Code: 2
> Time Taken: 00:02
Nie bardzo wiem o co chodzi, żadna z wersji programu nie działa prawidłowo.Zawsze wywala mi taki błąd.
Na innym kompie, też s systemem XP kompiluje mi prawidłowo.
Jeśli ktoś spotkał się z takim cudem i wie jak to rozwiązać to proszę o poradę, bo już zaczynam rwać włosy z głowy.
Pozdrawiam
P.S
#include "avr/io.h"
int main (void)
{
DDRA=_BV(PA0);
while(1)
{
PORTA|=_BV(PA0);
for (long int i=0;i<1000000;i++);
PORTA&=~_BV(PA0);
}
return(0);
}
To jest przykładowy program który próbuję skompilować