Documentation and download available at http://www.FreeRTOS.org/
Changes between FreeRTOS V10.3.0 and FreeRTOS V10.3.1 released February 18 2020
See http://www.FreeRTOS.org/FreeRTOS-V10.3.x.html
./FreeRTOS-Labs directory was removed from this file. The libraries it
contained are now available as a separate download.
Changes between FreeRTOS V10.2.1 and FreeRTOS V10.3.0 released February 7 2020
See http://www.FreeRTOS.org/FreeRTOS-V10.3.x.html
New and updated kernel ports:
+ Added RISC-V port for the IAR compiler.
+ Update the Windows simulator port to use a synchronous object to prevent
a user reported error whereby a task continues to run for a short time
after being moved to the Blocked state. Note we were not able to
replicate the reported issue and it likely depends on your CPU model.
+ Correct alignment of stack top in RISC-V port when
configISR_STACK_SIZE_WORDS is defined to a non zero value, which causes
the interrupt stack to be statically allocated.
+ The RISC-V machine timer compare register can now be for any HART, whereas
previously it was always assumed FreeRTOS was running on HART 0.
+ Update the sequence used to update the 64-bit machine timer
compare register on 32-bit cores to match that suggested in RISC-V
documentation.
+ Added tickless low power modes into the ARM, IAR and GCC Cortex-M0 compiler
ports.
+ Updated the behaviour of the ARMv7-M MPU (Memory Protection Unit) ports to
match that of the ARMv8-M ports whereby privilege escalations can only
originate from within the kernel's own memory segment. Added
configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY configuration constant.
+ Update existing MPU ports to correctly disable the MPU before it is
updated.
+ Added contributed port and demo application for a T-Head (formally C-SKY)
microcontroller.
New API functions:
+ Added the vPortGetHeapStats() API function which returns information on
the heap_4 and heap_5 state.
+ Added xTaskCatchUpTicks(), which corrects the tick count value after the
application code has held interrupts disabled for an extended period.
+ Added xTaskNotifyValueClear() API function.
+ Added uxTimerGetReloadMode() API function.
Other miscellaneous changes:
+ Change type of uxPendedTicks from UBaseType_t to TickType_t to ensure it
has the same type as variables with which it is compared to, and therefore
also renamed the variable xPendingTicks.
+ Update Keil projects that use the MPU so memory regions come from linker
script (scatter file) variables instead of being hard coded.
+ Added LPC51U68 Cortex-M0+ demos for GCC (MCUXpresso), Keil and IAR
compilers.
+ Added CORTEX_MPU_STM32L4_Discovery_Keil_STM32Cube demo.
+ Added LPC54018 MPU demo.
+ Rename xTaskGetIdleRunTimeCounter() to ulTaskGetIdleRunTimeCounter().
Changes between FreeRTOS V10.2.1 and FreeRTOS V10.2.0 released May 13 2019:
+ Added ARM Cortex-M23 port layer to complement the pre-existing ARM
Cortex-M33 port layer.
+ The RISC-V port now automatically switches between 32-bit and 64-bit
cores.
+ Introduced the portMEMORY_BARRIER macro to prevent instruction re-ordering
when GCC link time optimisation is used.
+ Introduced the portDONT_DISCARD macro to the ARMv8-M ports to try and
prevent the secure side builds from removing symbols required by the
non secure side build.
+ Introduced the portARCH_NAME to provide additional data to select semi-
automated build environments.
+ Cortex-M33 and Cortex-M23 ports now correctly disable the MPU before
updating the MPU registers.
+ Added Nuvoton NuMaker-PFM-M2351 ARM Cortex-M23 demo.
+ Added LPC55S69 ARM Cortex-M33 demo.
+ Added an STM32 dual core AMP stress test demo.
Changes between FreeRTOS V10.1.1 and FreeRTOS V10.2.0 released February 25 2019:
+ Added GCC RISC-V MCU port with three separate demo applications.
+ Included pre-existing ARM Cortex-M33 (ARMv8-M) GCC/ARMclang and IAR ports
with Keil simulator demo.
+ Update the method used to detect if a timer is active. Previously the
timer was deemed to be inactive if it was not referenced from a list.
However, when a timer is updated it is temporarily removed from, then
re-added to a list, so now the timer's active status is stored separately.
+ Add vTimerSetReloadMode(), xTaskGetIdleRunTimeCounter(), and
xTaskGetApplicationTaskTagFromISR() API functions.
+ Updated third party Xtensa port so it is MIT licensed.
+ Added configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H to the Renesas
compiler RX600v2 port to enable switching between platform.h and
iodefine.h includes within that port's port.c file.
+ Removed the 'FromISR' functions from the MPU ports as ISRs run privileged
anyway.
+ Added uxTaskGetStackHighWaterMark2() function to enable the return type to
be changed without breaking backward compatibility.
uxTaskGetStackHighWaterMark() returns a UBaseType_t as always,
uxTaskGetStackHighWaterMark2() returns configSTACK_DEPTH_TYPE to allow the
user to determine the return type.
+ Fixed issues in memory protected ports related to different combinations
of static memory only and dynamic memory only builds. As a result the
definition of tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE became more
complex and was moved to FreeRTOS.h with a table explaining its definition.
+ Added a 'get task tag from ISR' function.
+ Change the method used to determine if a timer is active or not from just
seeing if it is referenced from the active timer list to storing its
active state explicitly. The change prevents the timer reporting that it
is inactive while it is being moved from one list to another.
+ The pcName parameter passed into the task create functions can be NULL,
previously a name had to be provided.
+ When using tickless idle, prvResetNextTaskUnblockTime() is now only called
in xTaskRemoveFromEventList() if the scheduler is not suspended.
+ Introduced portHAS_STACK_OVERFLOW_CHECKING, which should be set to 1 for
FreeRTOS ports that run on architectures that have stack limit registers.
Changes between FreeRTOS V10.1.0 and FreeRTOS V10.1.1 released 7 September 2018
+ Reverted a few structure name changes that broke several kernel aware
debugger plug-ins.
+ Updated to the latest trace recorder code.
+ Fixed some formatting in the FreeRTOS+TCP TCP/IP stack code.
+ Reverted moving some variables from file to function scope as doing so
broke debug scenarios that require the static qualifier to be removed.
Changes between FreeRTOS V10.0.1 and FreeRTOS V10.1.0 released 22 August 2018
FreeRTOS Kernel Changes:
+ Update lint checked MISRA compliance to use the latest MISRA standard, was
previously using the original MISRA standard.
+ Updated all object handles (TaskHandle_t, QueueHandle_t, etc.) to be
unique types instead of void pointers, improving type safety. (this was
attempted some years back but had to be backed out due to bugs in some
debuggers). Note this required the pvContainer member of a ListItem_t
struct to be renamed - set configENABLE_BACKWARD_COMPATIBILITY to 1 if
this causes an issue.
+ Added configUSE_POSIX_ERRNO to enable per task POSIX style errno
functionality in a more user friendly way - previously the generic thread
local storage feature was used for this purpose.
+ Added Xtensa port and demo application for the XCC compiler.
+ Changed the implementation of vPortEndScheduler() for the Win32 port to
simply call exit( 0 ).
+ Bug fix in vPortEnableInterrupt() for the GCC Microblaze port to protect
the read modify write access to an internal Microblaze register.
+ Fix minor niggles when the MPU is used with regards to prototype
differences, static struct size differences, etc.
+ The usStackHighWaterMark
没有合适的资源?快使用搜索试试~ 我知道了~
STM32G431FreeRTOS项目
共422个文件
h:165个
c:115个
o:40个
需积分: 0 15 下载量 26 浏览量
2023-07-09
14:56:23
上传
评论
收藏 14.66MB ZIP 举报
温馨提示
串口、LCD、按键、LED、任务创建,消息队列
资源推荐
资源详情
资源评论
收起资源包目录
STM32G431FreeRTOS项目 (422个子文件)
FreeRTOS.axf 961KB
stm32g4xx_hal_hrtim.c 392KB
stm32g4xx_hal_tim.c 261KB
stm32g4xx_hal_i2c.c 226KB
stm32g4xx_hal_cryp.c 192KB
tasks.c 174KB
stm32g4xx_hal_uart.c 156KB
stm32g4xx_hal_adc.c 146KB
stm32g4xx_hal_spi.c 142KB
stm32g4xx_hal_tim_ex.c 138KB
stm32g4xx_hal_usart.c 126KB
stm32g4xx_hal_smartcard.c 124KB
stm32g4xx_hal_fdcan.c 123KB
stm32g4xx_hal_irda.c 103KB
stm32g4xx_hal_smbus.c 98KB
queue.c 94KB
stm32g4xx_hal_adc_ex.c 93KB
stm32g4xx_hal_qspi.c 91KB
stm32g4xx_hal_fmac.c 89KB
stm32g4xx_hal_sai.c 89KB
stm32g4xx_ll_adc.c 76KB
stm32g4xx_hal_lptim.c 76KB
stm32g4xx_hal_rtc.c 74KB
stm32g4xx_hal_nand.c 73KB
stm32g4xx_hal_rtc_ex.c 63KB
stm32g4xx_hal_rcc_ex.c 63KB
stm32g4xx_hal_i2s.c 62KB
stm32g4xx_hal_dac.c 61KB
stm32g4xx_hal_pcd.c 58KB
stm32g4xx_ll_tim.c 56KB
stm32g4xx_hal_rcc.c 51KB
cmsis_os.c 50KB
stm32g4xx_hal_flash_ex.c 49KB
stm32g4xx_hal_nor.c 47KB
stm32g4xx_hal_cordic.c 45KB
stream_buffer.c 43KB
stm32g4xx_hal_opamp.c 42KB
timers.c 40KB
stm32g4xx_hal_pwr_ex.c 38KB
stm32g4xx_hal_dac_ex.c 38KB
stm32g4xx_ll_rcc.c 36KB
stm32g4xx_hal_dma.c 35KB
stm32g4xx_hal_uart_ex.c 35KB
stm32g4xx_hal_sram.c 34KB
stm32g4xx_hal_comp.c 34KB
stm32g4xx_ll_rtc.c 32KB
stm32g4xx_hal_opamp_ex.c 30KB
stm32g4xx_ll_fmc.c 29KB
port.c 28KB
stm32g4xx_ll_utils.c 28KB
event_groups.c 26KB
stm32g4xx_hal_rng.c 26KB
bsp_lcd.c 26KB
stm32g4xx_hal_pwr.c 25KB
stm32g4xx_hal_flash.c 23KB
stm32g4xx_hal.c 23KB
stm32g4xx_ll_comp.c 23KB
stm32g4xx_ll_usb.c 23KB
stm32g4xx_ll_spi.c 21KB
stm32g4xx_ll_dac.c 21KB
stm32g4xx_hal_cortex.c 21KB
stm32g4xx_hal_gpio.c 18KB
stm32g4xx_ll_usart.c 18KB
heap_5.c 18KB
stm32g4xx_hal_exti.c 18KB
stm32g4xx_hal_crc.c 17KB
stm32g4xx_hal_smartcard_ex.c 16KB
stm32g4xx_hal_usart_ex.c 16KB
stm32g4xx_ll_dma.c 16KB
heap_4.c 16KB
stm32g4xx_hal_wwdg.c 15KB
croutine.c 13KB
stm32g4xx_hal_cryp_ex.c 12KB
stm32g4xx_ll_lpuart.c 12KB
stm32g4xx_hal_i2c_ex.c 11KB
stm32g4xx_ll_exti.c 11KB
system_stm32g4xx.c 11KB
system_stm32g4xx.c 11KB
stm32g4xx_hal_iwdg.c 11KB
stm32g4xx_hal_dma_ex.c 10KB
heap_2.c 10KB
stm32g4xx_ll_gpio.c 10KB
stm32g4xx_ll_opamp.c 10KB
stm32g4xx_ll_lptim.c 9KB
stm32g4xx_hal_pcd_ex.c 9KB
stm32g4xx_hal_smbus_ex.c 8KB
list.c 8KB
stm32g4xx_ll_i2c.c 8KB
stm32g4xx_hal_flash_ramfunc.c 8KB
stm32g4xx_hal_crc_ex.c 7KB
stm32g4xx_hal_timebase_tim_template.c 6KB
main.c 6KB
stm32g4xx_it.c 5KB
multi_button.c 5KB
heap_1.c 5KB
stm32g4xx_ll_ucpd.c 5KB
gpio.c 4KB
stm32g4xx_hal_timebase_tim.c 4KB
usart.c 4KB
stm32g4xx_ll_rng.c 4KB
共 422 条
- 1
- 2
- 3
- 4
- 5
资源评论
untitle.
- 粉丝: 13
- 资源: 6
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功