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 member of the TaskStatus_t structure now has type
configSTACK_DEPTH_TYPE in place of uint16_t - that change should have been
made when the config
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
基于freertos的STM32F407-103的modbus传输浮点数_3-modbus-407-103-no-freertos-float-2024-0826.zip 资料特点: 设计合理: 遵循模块化,便于扩展。 注释相近: 统一风格,易于理解。 资料丰富: 包括示例代码、文档和演示。
资源推荐
资源详情
资源评论
收起资源包目录
基于freertos的STM32F407-103的modbus传输浮点数_3-modbus-407-103 (2000个子文件)
arm_common_tables.c 4.62MB
arm_linear_interp_data.c 4.1MB
arm_common_tables.c 965KB
arm_dct4_init_f32.c 793KB
arm_common_tables_f16.c 667KB
arm_dct4_init_q31.c 630KB
arm_dct4_init_q15.c 490KB
arm_mve_tables.c 464KB
arm_rfft_init_f32.c 337KB
arm_rfft_init_q31.c 322KB
arm_mve_tables_f16.c 309KB
transform_tests_common_data.c 270KB
stm32f4xx_hal_fmpi2c.c 253KB
arm_rfft_init_q15.c 250KB
stm32f4xx_hal_tim.c 238KB
stm32f4xx_hal_i2c.c 236KB
stm32f4xx_hal_cryp.c 229KB
tasks.c 169KB
stm32f4xx_hal_rcc_ex.c 152KB
stm32f4xx_hal_dfsdm.c 149KB
stm32f4xx_hal_uart.c 132KB
stm32f4xx_hal_hash.c 129KB
stm32f4xx_hal_spi.c 122KB
stm32f4xx_hal_eth.c 107KB
stm32f4xx_hal_fmpsmbus.c 101KB
stm32f4xx_hal_sd.c 100KB
stm32f4xx_hal_usart.c 99KB
stm32f4xx_hal_mmc.c 99KB
stm32f4xx_hal_dsi.c 95KB
stm32f4xx_hal_qspi.c 94KB
stm32f4xx_hal_smbus.c 94KB
stm32f4xx_hal_irda.c 93KB
queue.c 91KB
stm32f4xx_hal_smartcard.c 83KB
stm32f4xx_hal_tim_ex.c 80KB
stm32f4xx_hal_sai.c 80KB
stm32f4xx_hal_can.c 79KB
stm32f4xx_hal_adc.c 75KB
stm32f4xx_hal_nand.c 74KB
stm32f4xx_hal_lptim.c 73KB
stm32f4xx_hal_dma2d.c 71KB
stm32f4xx_hal_ltdc.c 71KB
stm32f4xx_hal_i2s.c 68KB
stm32f4xx_hal_rtc.c 65KB
filtering_test_common_data.c 63KB
stm32f4xx_ll_usb.c 63KB
stm32f4xx_hal_pcd.c 62KB
stm32f4xx_hal_rtc_ex.c 59KB
stm32f4xx_ll_fmc.c 55KB
stm32f4xx_hal_hcd.c 54KB
arm_cfft_radix4_q15.c 53KB
arm_cfft_radix4_q15.c 53KB
stm32f4xx_hal_spdifrx.c 52KB
DAP.c 52KB
arm_linear_interp_data.c 50KB
stm32f4xx_hal_nor.c 50KB
stm32f4xx_ll_rcc.c 50KB
arm_mat_inverse_f32.c 49KB
stm32f4xx_ll_sdmmc.c 49KB
stm32f4xx_hal_flash_ex.c 49KB
cmsis_os.c 48KB
stm32f4xx_hal_hash_ex.c 47KB
arm_correlate_f16.c 46KB
stm32f4xx_hal_dac.c 46KB
stm32f4xx_ll_tim.c 44KB
arm_fft_bin_data.c 43KB
arm_fft_bin_data.c 43KB
arm_mat_cmplx_mult_f32.c 43KB
stm32f4xx_ll_adc.c 42KB
arm_conv_partial_fast_q15.c 41KB
stream_buffer.c 41KB
stm32f4xx_hal_rcc.c 41KB
stm32f4xx_hal_adc_ex.c 40KB
arm_fir_q31.c 40KB
arm_cfft_radix4_f16.c 40KB
stm32f4xx_ll_fsmc.c 39KB
timers.c 39KB
stm32f4xx_hal_dma.c 39KB
stm32f4xx_hal_sdram.c 39KB
arm_fir_f32.c 39KB
arm_fir_interpolate_f32.c 38KB
stm32f4xx_hal_i2s_ex.c 38KB
arm_cfft_radix4_q31.c 38KB
arm_conv_fast_q15.c 37KB
stm32f4xx_hal_dcmi.c 36KB
arm_correlate_fast_q15.c 35KB
arm_cfft_f32.c 35KB
arm_mat_cmplx_mult_q31.c 33KB
arm_cfft_radix4_f32.c 33KB
arm_cfft_radix4_f32.c 33KB
stm32f4xx_hal_sram.c 33KB
controller_test_common_data.c 32KB
stm32f4xx_hal_cec.c 31KB
stm32f4xx_ll_utils.c 31KB
arm_mat_mult_f32.c 31KB
arm_correlate_f32.c 30KB
stm32f4xx_ll_rtc.c 29KB
stm32f4xx_hal_pccard.c 29KB
arm_mat_inverse_f16.c 29KB
arm_biquad_cascade_df1_32x64_q31.c 29KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
好家伙VCC
- 粉丝: 2107
- 资源: 9145
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功