-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed crashing issue. Had to add another parameter to task scheduler init (sysctl periph value). Did simple testing to prove task scheduler works. More advanced testing, like measuring jitter, was not done.
- Loading branch information
1 parent
609ff32
commit ab82708
Showing
8 changed files
with
467 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<configurations XML_version="1.2" id="configurations_0"> | ||
<configuration XML_version="1.2" id="configuration_0"> | ||
<instance XML_version="1.2" desc="Stellaris In-Circuit Debug Interface" href="connections/Stellaris_ICDI_Connection.xml" id="Stellaris In-Circuit Debug Interface" xml="Stellaris_ICDI_Connection.xml" xmlpath="connections"/> | ||
<connection XML_version="1.2" id="Stellaris In-Circuit Debug Interface"> | ||
<instance XML_version="1.2" href="drivers/stellaris_cs_dap.xml" id="drivers" xml="stellaris_cs_dap.xml" xmlpath="drivers"/> | ||
<instance XML_version="1.2" href="drivers/stellaris_cortex_m4.xml" id="drivers" xml="stellaris_cortex_m4.xml" xmlpath="drivers"/> | ||
<platform XML_version="1.2" id="platform_0"> | ||
<instance XML_version="1.2" desc="Tiva TM4C123GH6PM" href="devices/tm4c123gh6pm.xml" id="Tiva TM4C123GH6PM" xml="tm4c123gh6pm.xml" xmlpath="devices"/> | ||
</platform> | ||
</connection> | ||
</configuration> | ||
</configurations> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/****************************************************************************** | ||
* | ||
* Default Linker Command file for the Texas Instruments TM4C123GH6PM | ||
* | ||
* This is derived from revision 15071 of the TivaWare Library. | ||
* | ||
*****************************************************************************/ | ||
|
||
--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; |
Oops, something went wrong.