[Cryptech-Commits] [sw/stm32] branch no-rtos updated (bf394f2 -> e234cac)

git at cryptech.is git at cryptech.is
Sat Apr 29 19:55:17 UTC 2017


This is an automated email from the git hooks/post-receive script.

paul at psgd.org pushed a change to branch no-rtos
in repository sw/stm32.

    from bf394f2  Replace the RTOS with a simple cooperative tasker.
     new 30c4302  Remove rtos source files.
     new 4a69b83  Remove exception handlders that I probably shouldn't have defined in the first place.
     new 14282a9  Port cli-test to the new task API.
     new f77ba50  Simplify hsm makefile.
     new e234cac  Add task_delay.

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 libraries/mbed/rtos/Makefile                       |   40 -
 libraries/mbed/rtos/rtos/rtos_idle.c               |   51 -
 libraries/mbed/rtos/rtos/rtos_idle.h               |   37 -
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/HAL_CM.c   |  170 --
 .../mbed/rtos/rtx/TARGET_CORTEX_M/RTX_CM_lib.h     |  537 ------
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/RTX_Conf.h |   72 -
 .../mbed/rtos/rtx/TARGET_CORTEX_M/RTX_Conf_CM.c    |  342 ----
 .../TARGET_RTOS_M4_M7/TOOLCHAIN_GCC/HAL_CM4.S      |  405 -----
 .../TARGET_RTOS_M4_M7/TOOLCHAIN_GCC/SVC_Table.S    |   56 -
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/cmsis_os.h |  774 --------
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/os_tcb.h   |   51 -
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_CMSIS.c | 1887 --------------------
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Event.c |  190 --
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Event.h |   46 -
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_HAL_CM.h      |  276 ---
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_List.c  |  320 ----
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_List.h  |   67 -
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_Mailbox.c     |  292 ---
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_Mailbox.h     |   48 -
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_MemBox.c      |  166 --
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_MemBox.h      |   46 -
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Mutex.c |  197 --
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Mutex.h |   44 -
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Robin.c |   84 -
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Robin.h |   45 -
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_Semaphore.c   |  183 --
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_Semaphore.h   |   46 -
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_System.c      |  299 ----
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_System.h      |   52 -
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Task.c  |  339 ----
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Task.h  |   73 -
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Time.c  |   94 -
 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Time.h  |   47 -
 .../mbed/rtos/rtx/TARGET_CORTEX_M/rt_TypeDef.h     |  128 --
 .../TOOLCHAIN_GCC_ARM/startup_stm32f429xx_rtos.S   |  566 ------
 .../TARGET_CRYPTECH_ALPHA/stm32f4xx_it.c           |   80 +-
 .../TARGET_CRYPTECH_ALPHA/stm32f4xx_it_rtos.c      |  265 ---
 projects/cli-test/Makefile                         |   18 +-
 projects/cli-test/mgmt-cli.c                       |   19 +-
 projects/cli-test/mgmt-test.c                      |    3 +-
 projects/hsm/Makefile                              |   17 +-
 task.c                                             |   10 +
 task.h                                             |    4 +-
 43 files changed, 30 insertions(+), 8456 deletions(-)
 delete mode 100644 libraries/mbed/rtos/Makefile
 delete mode 100644 libraries/mbed/rtos/rtos/rtos_idle.c
 delete mode 100644 libraries/mbed/rtos/rtos/rtos_idle.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/HAL_CM.c
 delete mode 100755 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/RTX_CM_lib.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/RTX_Conf.h
 delete mode 100755 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/RTX_Conf_CM.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/TARGET_RTOS_M4_M7/TOOLCHAIN_GCC/HAL_CM4.S
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/TARGET_RTOS_M4_M7/TOOLCHAIN_GCC/SVC_Table.S
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/cmsis_os.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/os_tcb.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_CMSIS.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Event.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Event.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_HAL_CM.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_List.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_List.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Mailbox.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Mailbox.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_MemBox.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_MemBox.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Mutex.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Mutex.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Robin.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Robin.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Semaphore.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Semaphore.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_System.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_System.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Task.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Task.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Time.c
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_Time.h
 delete mode 100644 libraries/mbed/rtos/rtx/TARGET_CORTEX_M/rt_TypeDef.h
 delete mode 100644 libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32F4/TARGET_CRYPTECH_ALPHA/TOOLCHAIN_GCC_ARM/startup_stm32f429xx_rtos.S
 delete mode 100644 libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32F4/TARGET_CRYPTECH_ALPHA/stm32f4xx_it_rtos.c



More information about the Commits mailing list