Skip to content
Open
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
9a1dba1
Added freertos as submodule
leanfrancucci Jun 10, 2020
14e42a3
Added initial port files
cmancon Jun 10, 2020
864da1e
Corrected erroneous relative location for platform specific files
cmancon Jun 11, 2020
d000da9
Created a shell of a project to validate the port.
cmancon Jun 11, 2020
2789770
Added bsp related files to demo project
cmancon Jun 11, 2020
f2b90a0
Included bsp specific files and functions.
cmancon Jun 11, 2020
c6a37ed
Removed some unneeded hardware initialisation
cmancon Jun 13, 2020
ba5482f
Included optional info to improve FreeRTOS debug experience
cmancon Jun 13, 2020
4b51627
Redefinition of startupTask to remove double trace openning
cmancon Jun 13, 2020
9b413bf
Manipulations to get an stable and working demo on CIAA-NXP
cmancon Jun 13, 2020
45c1128
Modified fwk initialisation and FreeRTOS' Scheduler starting point
cmancon Jun 18, 2020
6386d61
Minor changes as discussed in PR#13
cmancon Jun 28, 2020
e6acc27
Improved BSP layer
cmancon Jun 28, 2020
ac822d4
Fixed some absolute paths in MCUXpresso project
cmancon Jun 29, 2020
5267b74
Added OpenOCD config file
cmancon Jun 29, 2020
3c5c058
Improved Debug configurations
cmancon Jun 29, 2020
5fadac2
Untracked 'settings' folder from mcuxpresso project folder
cmancon Jul 7, 2020
6cdfff2
Tidied FreeRTOSConfig file and included helper function to check heap
cmancon Jul 26, 2020
048c176
Added Pause function using TECs or DINs depending on the board used
cmancon Jul 26, 2020
b56ed3b
Modified conditional compilation with environment variable
cmancon Jul 28, 2020
def2bc0
Updated Debug Configurations to make explicit use of both platforms
cmancon Jul 28, 2020
acfbe03
fix freertos submodule link
dariosb Jul 30, 2020
c523e12
Adds BOARD definition to project file
dariosb Jul 30, 2020
040c1ef
Solve environment variable definition
dariosb Jul 30, 2020
9eb5151
Deleted FreeRTOS (general repository) submodule
cmancon Jul 30, 2020
cb6305a
Included FreeRTOS kernel-only repository as a submodule
cmancon Jul 30, 2020
040e7ba
Moved bsp_timeTick() implementation out of conditional compilation block
cmancon Aug 31, 2020
ed6a9c7
Merge pull request #14 from vortexmakes/issue-freertos-submodule
cmancon Sep 18, 2020
8eb1265
Update .travis.yml
cmancon Sep 18, 2020
35d7ffe
Update .travis.yml
cmancon Sep 18, 2020
4af13ed
Update .travis.yml
cmancon Sep 20, 2020
c8ae4f2
First iteration on the Shared demo Readme
cmancon Sep 20, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "third-party/ceedling"]
path = third-party/ceedling
url = https://github.com/ThrowTheSwitch/Ceedling.git
[submodule "third-party/freertos"]
path = third-party/freertos
url = https://github.com/aws/amazon-freertos.git

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/Debug/
Loading