Skip to content

Update CMSIS/RTX with Cortex-A support #5342

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

Merged
merged 26 commits into from
Nov 15, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a03591d
CMSIS/RTX: Update CMSIS and RTX to 22b68c
bulislaw Oct 12, 2017
d5933f1
CMSIS/RTX: Patch RTX4 to preserve osThreadDef compatibility
bulislaw Jul 4, 2017
5d6abd6
CMSIS/RTX: Patch RTX includes to match mbed OS scheme
bulislaw Jul 4, 2017
1b131ed
CMSIS/RTX: Patch RTX so irq_cm4f.s files work with no FPU targets
bulislaw Jul 4, 2017
3f97e57
CMSIS/RTX: Remove os_tick_gtim.c
bulislaw Oct 12, 2017
02d01f4
CSMIS/RTX: cmain IAR: add mbed main
0xc0170 Jun 21, 2017
20357bc
CMSIS/RTX: Reintroduce core_cmSecureAccess.h lost during CMSIS update
bulislaw Oct 12, 2017
4523b5d
CMSIS/RTX: Allow overwriting _mutex_initialize symbol for ARMC
bulislaw Oct 18, 2017
b8aa068
CMSIS/RTX: Rename asm files to upper case .S
bulislaw Oct 25, 2017
372b7b8
RTX5: uVisor: Defer to uVisor for SVCall priority
Patater Jan 30, 2017
f363ccb
RTX5: uVisor: Add OsEventObserver
Patater Jan 19, 2017
12a47f0
RTX5: uVisor: Extend thread control block with context
Patater Jan 25, 2017
474f6c6
RTX5: uVisor: Use OsEventObserver
Patater Jan 19, 2017
75ad20b
RTX5: uVisor: Switch threads very carefully
Patater May 25, 2017
c10dd0a
RZ_A1H: Fix cmsis header name
bulislaw Jul 4, 2017
855844f
Update CThunk to support new CMSIS Cortex A ops
bulislaw Jul 25, 2017
717087c
Renesas: Add empty mbed_rtx.h
Jul 25, 2017
048a896
Update definitions of CPSR modes
Jul 25, 2017
8eebcff
Disable heap and stack tests for Cortex A
bulislaw Sep 5, 2017
4b354f8
Update include paths to match updated CMSIS
bulislaw Oct 12, 2017
2ea01ac
Enabled restrict keyword for IAR
bulislaw Oct 18, 2017
7bee352
Update SysTick API usage for tickless mode
bulislaw Oct 18, 2017
106f34e
Add arm_math.h
bulislaw Oct 19, 2017
c5a5438
Update params in calls to LD/STREXW to be uint32_t
bulislaw Oct 19, 2017
6e11dc2
Modification to arm_math.h
bulislaw Oct 20, 2017
a451498
rtl8195am - remove redundant header file inclusion
tung7970 Oct 24, 2017
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
5 changes: 5 additions & 0 deletions TESTS/mbedmicro-rtos-mbed/heap_and_stack/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#if defined(TARGET_CORTEX_A)
  #error [NOT_SUPPORTED] This function not supported for this target
#endif

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down
Loading