Tool/software:
Hello Everyone,
I have a really frustrating simple problem. PRINTF() does NOT WORK!!!
I have two projects, project_A and project_B. I want project_A printf() to work and send text to the console.
The source files are the same,
//This does not work. #include <stdio.h> int main(void) { printf("Hello"); fflush (stdout); printf(" World!"); fflush (stdout); return 0; }
//This does work. #include <stdio.h> int main(void) { printf("Hello"); fflush (stdout); printf(" World!"); fflush (stdout); return 0; }
The linker command files are the same,
/****************************************************************************** * * Default Linker Command file for the Texas Instruments TM4C123GH6PM * * This is derived from revision 15071 of the TivaWare Library. * *****************************************************************************/ //This does not work. --retain=g_pfnVectors MEMORY { FLASH (RX) : origin = 0x00000000, length = 0x00040000 SRAM (RWX) : origin = 0x20000000, length = 0x00008000 } /* The following command line options are set as part of the CCS project. */ /* If you are building using the command line, or for some reason want to */ /* define them here, you can uncomment and modify these lines as needed. */ /* If you are using CCS for building, it is probably better to make any such */ /* modifications in your CCS project and leave this file alone. */ /* */ /* --heap_size=0 */ /* --stack_size=256 */ /* --library=rtsv7M4_T_le_eabi.lib */ /* Section allocation in memory */ SECTIONS { .intvecs: > 0x00000000 .text : > FLASH .const : > FLASH .cinit : > FLASH .pinit : > FLASH .init_array : > FLASH .vtable : > 0x20000000 .data : > SRAM .bss : > SRAM .sysmem : > SRAM .stack : > SRAM } __STACK_TOP = __stack + 512;
/****************************************************************************** * * Default Linker Command file for the Texas Instruments TM4C123GH6PM * * This is derived from revision 15071 of the TivaWare Library. * *****************************************************************************/ //This does work. --retain=g_pfnVectors MEMORY { FLASH (RX) : origin = 0x00000000, length = 0x00040000 SRAM (RWX) : origin = 0x20000000, length = 0x00008000 } /* The following command line options are set as part of the CCS project. */ /* If you are building using the command line, or for some reason want to */ /* define them here, you can uncomment and modify these lines as needed. */ /* If you are using CCS for building, it is probably better to make any such */ /* modifications in your CCS project and leave this file alone. */ /* */ /* --heap_size=0 */ /* --stack_size=256 */ /* --library=rtsv7M4_T_le_eabi.lib */ /* Section allocation in memory */ SECTIONS { .intvecs: > 0x00000000 .text : > FLASH .const : > FLASH .cinit : > FLASH .pinit : > FLASH .init_array : > FLASH .vtable : > 0x20000000 .data : > SRAM .bss : > SRAM .sysmem : > SRAM .stack : > SRAM } __STACK_TOP = __stack + 512;
I have tried to make the project settings match as close as possible.
The projects are attached.
Thanks,
Allan