Benutzer:Alex: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Alex (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Alex (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 28: | Zeile 28: | ||
* the command line using the linker's --defsym option. | * the command line using the linker's --defsym option. | ||
*/ | */ | ||
EXTERN (_min_stack_size _min_heap_size) | EXTERN (_min_stack_size _min_heap_size) | ||
PROVIDE(_min_stack_size = 0x400) ; | PROVIDE(_min_stack_size = 0x400) ; | ||
PROVIDE(_min_heap_size = 0) ; | PROVIDE(_min_heap_size = 0) ; | ||
also als Linker-Parameter dann "--defsym _min_head_size=0x1000" oder so. | |||
äh, typo, heap statt head. | |||
bzw. für GCC dann "-Wl,--defsym,_min_heap_size=0x1000" | |||
<gallery widths=300px heights=200px perrow=3 > | <gallery widths=300px heights=200px perrow=3 > |
Version vom 13. August 2012, 23:30 Uhr
xmmp: alex@artbanause.de
Alex's Projekte (die noch welche werden wollen)
- NRF24L01+
- Bluetooth Transceiver Module
- Punkte für Orga 12/11
- Planung Regiowochenendes 2012
- ACTA-Übersicht
- Key Chain Camera
- Brickme
- Virtex-II-Pro-XC2VP50-FPGA-Board
- Der ewige Blinker
- MIPS Gedanken
* Provide for a minimum stack and heap size * - _min_stack_size - represents the minimum space that must be made * available for the stack. Can be overridden from * the command line using the linker's --defsym option. * - _min_heap_size - represents the minimum space that must be made * available for the heap. Can be overridden from * the command line using the linker's --defsym option. */ EXTERN (_min_stack_size _min_heap_size) PROVIDE(_min_stack_size = 0x400) ; PROVIDE(_min_heap_size = 0) ;
also als Linker-Parameter dann "--defsym _min_head_size=0x1000" oder so. äh, typo, heap statt head. bzw. für GCC dann "-Wl,--defsym,_min_heap_size=0x1000"
-
-
-
alex avr nRF rs232
213