Initial support for MSP430
Support for systems with only one partition. Support for cyclic and sporadic interfaces. Support for protected and unprotected interfaces.
Edited by Juan Font Alonso
Merge request reports
Activity
6 6 @@-- Use_POHIC 7 7 @@-- Debug 8 8 @@-- No_Stdlib 9 @@IF@@ not @_Use_POHIC_@ 9 @@IF@@ not @_Use_POHIC_@ and @_CPU_Platform_@ /= PLATFORM_MSP430_FREERTOS - Resolved by Juan Font Alonso
- Resolved by Juan Font Alonso
- Resolved by Juan Font Alonso
- Resolved by Juan Font Alonso
- Resolved by Juan Font Alonso
- Resolved by Juan Font Alonso
- Resolved by Juan Font Alonso
- Resolved by Juan Font Alonso
- Resolved by Juan Font Alonso
78 package Naming is 79 for Body_Suffix ("C++") use ".cc"; 80 end Naming; 81 82 package Compiler is 83 for Driver ("C") use "msp430-elf-gcc"; 84 for Driver ("C++") use "msp430-elf-g++"; 85 86 case Build is 87 when "Release" => 88 for Default_Switches ("C") use 89 ("-I/opt/ti/msp430-gcc/include/", 90 "-I.", 91 "-I../FreeRTOS/Source/include", 92 "-I../FreeRTOS/Source/portable/GCC/MSP430FR5969", 93 "-mmcu=msp430fr5969", - Resolved by Juan Font Alonso
116 117 package Linker is 118 for Driver use "msp430-elf-gcc"; 119 120 for Default_Switches ("C") use 121 ("-L/opt/ti/msp430-gcc/include/", 122 "-I/opt/ti/msp430-gcc/include/", 123 "-I.", 124 "-I../FreeRTOS/Source/include", 125 "-I../FreeRTOS/Source/portable/GCC/MSP430FR5969", 126 "-mmcu=msp430fr5969", 127 "-msmall", 128 "-Wall", 129 "-Wextra", 130 "-Wpedantic", 131 "-Wno-unused-parameter", changed this line in version 8 of the diff
By Rafal Babski on 2020-03-09T10:46:39
- Resolved by Juan Font Alonso
38 @@TABLE@@ 39 // @_Out_Port_Names_@ Vector tag: output ports of the partition 40 // @_Out_Port_Type_Name_@ corresponding parameter type name (optional) 41 @@END_TABLE@@ 42 43 @@TABLE@@ 44 // @_Part_Out_Port_Name_@ Vector tag: output ports of the partition (can be several times the same) 45 // @_Connected_Threads_@ Corresponding thread connected to it 46 @@END_TABLE@@ 47 48 #include <msp430.h> 49 50 #include "FreeRTOS.h" 51 #include "task.h" 52 #include "semphr.h" 53 #include "timers.h" added 30 commits
-
c18afc1d...bfd4e4a8 - 29 commits from branch
master
- 6f37e775 - Merge branch 'master' into msp430-support
By Rafal Babski on 2020-02-11T07:54:47
-
c18afc1d...bfd4e4a8 - 29 commits from branch
added 2 commits
By Rafal Babski on 2020-02-11T08:14:20
added 1 commit
- 8d2331bd - MSP430 - thread priorities (limited to 1-10)
By Rafal Babski on 2020-02-11T09:51:48
Please register or sign in to reply