Skip to content

Code Coverage using gcov #2629

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
adjust stack and heap to allow more static created by gcc coverage
  • Loading branch information
Mohammad Azim Khan committed Oct 20, 2016
commit d494bfedce3fce03d733198a691e5ae20bb019b8
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ ENTRY(Reset_Handler)
__ram_vector_table__ = 1;

/* Heap 1/4 of ram and stack 1/8 */
__stack_size__ = 0x8000;
__heap_size__ = 0x10000;
__stack_size__ = 0x7000;
__heap_size__ = 0x09000;

HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x0400;
STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x0400;
Expand Down