HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
29 volatile size_t heap_end;
57 total = (
unsigned long) SP - (
unsigned long) heap_end;
83 printf(
"Free Ram: %5u\n", (
unsigned int) ram);
85 printf(
" Stack Top: %5u, End: %5u\n", (
unsigned int*) &
__stack, (
unsigned int) SP);
86 printf(
" Stack Used: %5u\n", (
unsigned int*) &
__stack - (
unsigned int*) SP);
88 printf(
" Heap Start: %5u, End: %5u\n",
91 printf(
" BSS Start: %5u, End: %5u\n",
92 (
unsigned int)&__bss_start, (
unsigned int)&__bss_end);
94 printf(
" Data Start: %5u, End: %5u\n",
95 (
unsigned int)&__data_start, (
unsigned int)&__data_end);
98 printf(
"Free Ram: %8lu\n", (
unsigned int) ram);
100 printf(
" Stack Top: %8lu, End: %8lu\n", (
unsigned int*) &
__stack, (
unsigned int) SP);
101 printf(
" Stack Used: %8lu\n", (
unsigned int*) &
__stack - (
unsigned int*) SP);
103 printf(
" Heap Start: %8lu, End: %8lu\n",
106 printf(
" BSS Start: %8lu, End: %8lu\n",
107 (
unsigned int)&__bss_start, (
unsigned int)&__bss_end);
109 printf(
" Data Start: %8lu, End: %8lu\n",
110 (
unsigned int)&__data_start, (
unsigned int)&__data_end);
124 void *p =
calloc(size, elements);
127 printf(
"safecalloc(%d,%d) failed!\n", size, elements);
141 void *p =
calloc(size, 1);
144 printf(
"safemalloc(%d) failed!\n", (
int) size);
172 printf(
"safefree: FREE ERROR start(%lu), end(%lu)\n", (
size_t) p, (
size_t) heap_end);
MEMSPACE int printf(const char *format,...)
size_t freeRam()
Return AVR Free memory for Malloc.
void * safecalloc(int size, int elements)
Safe Alloc - Display Error message if Calloc fails.
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
char * __malloc_heap_start
void * safemalloc(size_t size)
Safe Malloc - Display Error message if Malloc fails.
Master Include for FatFs, RTC, Timers AVR8 - Part of HP85 disk emulator.
void PrintFree()
Display AVR free memory of each type>
size_t heaptop()
calloc may be aliased to safecalloc