I replaced most of FreeRTOS 8 files by 10 ones. Compilation of the new version together with POSIX lib from amazon is finally ok if: - arm_c0 / port.c和portmacro.h未更新。(新版本实现拇指-2最终达到一些编译错误) - 激活configsupport_static_allocation。以下陈述必须包含在main.c: https://www.freertos.org/a00110.html#configsupport_static_allocation. - #define configIdle_task_stack_size 60(报告图60用于在其他一些Cortex-M0项目中使用)
I ended-up with 建筑目标:freertos_demo.elf 调用:交叉臂C链接器 [...] C:/程序文件(x86)/ diasemi / smartsnippetsstudio / gcc / 4_9-2015q3 / bin / s / lib / gcc / arm-none-eabi / 4.9.3 / ../../../../arm-none-eabi/bin/ld.exe: FreeRTOS_Demo.elf section `.bss' will not fit in region `RAM' C:/程序文件(x86)/ diasemi / smartsnippetsstudio / gcc / 4_9-2015q3 / bin / s / lib / gcc / arm-none-eabi / 4.9.3 / ../../../../ARM-None-EABI / BIN / LD.EXE:Region RAM覆盖堆栈 C:/程序文件(x86)/ diasemi / smartsnippetsstudio / gcc / 4_9-2015q3 / bin / s / lib / gcc / arm-none-eabi / 4.9.3 / ../../../../arm-none-eabi/bin/ld.exe: region `RAM' overflowed by 864 bytes
- 来自Amazon存储库的FreErtos文件可以使用“原样”来替换SDK中交付的V8 - v8 arm_c0 / port.c和portmacro.h仍然必须使用DA1468x低级功能 - #define configsupport_static_allocation 1(使用函数添加到main.c.查看之前) - #define configuse_posix_erno 1必须在freertosconfig.h中添加 - some relative path to some headers files are to be cleaned to avoid usage of V8 headers - 删除v10 mpu_wrappers.h中的priviledge_data重新定义 - use an empty FreeRTOS_POSIX_portable.h from other targets
PTHread的亚马逊实现使用非常低的堆栈内存器,以用于创建的线程。 pthread_attr_t must be used to get proper behavior of the overall system by manually setting stack size of each thread.
你好bobspam@free.fr那
We are working on FreeRTOS 10 support in the DA1468x SDK. The expected time line for release is Q2 2019.
谢谢,PM_DIALOG.
你好
谢谢您的回答。很高兴知道,但我不能等6个月。
I replaced most of FreeRTOS 8 files by 10 ones. Compilation of the new version together with POSIX lib from amazon is finally ok if:
- arm_c0 / port.c和portmacro.h未更新。(新版本实现拇指-2最终达到一些编译错误)
- 激活configsupport_static_allocation。以下陈述必须包含在main.c:
https://www.freertos.org/a00110.html#configsupport_static_allocation.
- #define configIdle_task_stack_size 60(报告图60用于在其他一些Cortex-M0项目中使用)
I ended-up with
建筑目标:freertos_demo.elf
调用:交叉臂C链接器
[...]
C:/程序文件(x86)/ diasemi / smartsnippetsstudio / gcc / 4_9-2015q3 / bin / s / lib / gcc / arm-none-eabi / 4.9.3 / ../../../../arm-none-eabi/bin/ld.exe: FreeRTOS_Demo.elf section `.bss' will not fit in region `RAM'
C:/程序文件(x86)/ diasemi / smartsnippetsstudio / gcc / 4_9-2015q3 / bin / s / lib / gcc / arm-none-eabi / 4.9.3 / ../../../../ARM-None-EABI / BIN / LD.EXE:Region RAM覆盖堆栈
C:/程序文件(x86)/ diasemi / smartsnippetsstudio / gcc / 4_9-2015q3 / bin / s / lib / gcc / arm-none-eabi / 4.9.3 / ../../../../arm-none-eabi/bin/ld.exe: region `RAM' overflowed by 864 bytes
这意味着我需要通过删除未使用的功能来清理SDK ...
未完待续
你好bobspam@free.fr那
由于它已经在宝柱中提到,目前尚未得到支持。虽然,很高兴您将大部分Freertos 8个文件替换为10个,并且谢谢您的指示。
谢谢,PM_DIALOG.
嗨pm_dialog,
几天后工作
- DA14683 SDK可成功编译ARM-None-EABI-GCC版本15:6.3.1 + SVN253039-1Build1,用Ubuntu LTS 18.0.4以标准提供。编译器的默认配置已损坏,但自制makefile与nostdlib在编译中激活并链接最终工作。
- 以下序列必须手动链接:crt0.o crti.o crtbegin.o [-l paths] [用户对象] [gcc libs] [c libs] [gcc libs] crtend.o crtn.o(感谢Gentoo论坛:https://dev.gentoo.org/~vapier/crt.txt.)。此序列似乎在Eclipse环境中似乎没有正确设置。被检查;因为似乎有一些系统标题使用并在尝试使用Amazon Posix Libs时发生重新定义。
- 来自Amazon存储库的FreErtos文件可以使用“原样”来替换SDK中交付的V8
- v8 arm_c0 / port.c和portmacro.h仍然必须使用DA1468x低级功能
- #define configsupport_static_allocation 1(使用函数添加到main.c.查看之前)
- #define configuse_posix_erno 1必须在freertosconfig.h中添加
- some relative path to some headers files are to be cleaned to avoid usage of V8 headers
- 删除v10 mpu_wrappers.h中的priviledge_data重新定义
- use an empty FreeRTOS_POSIX_portable.h from other targets
- Amazon存储库的POSIX文件可以添加到项目中并按原样编译。
Freertos_Retarget使用此配置的USB Dev套件上的正常工作。
我仍然需要检查亚马逊之前的POSIX实施,但所有这些声音都成熟并准备好使用,所以您应该考虑向前移动并将其带入SDK。POSIX LIBS是Linux下的原型软件的非常有效的方法,并将其带到嵌入式系统下。
未完待续...
你好
我确认在SDK和Amazon维护的SDK和Freertos 10中嵌入的Freertos 8之间没有重大区别。
porting arm_c0 / port.c和portmacro.h很简单。源代码与装配部分开头的一个例外相同,其中freertos 10能够使用thumb2。
我确实确认它很容易工作,并且POSIX适配层也在工作。
pthread_create是可以的。
堆消耗更高,因此必须检查内存映射,“堆栈溢出”和“Malloc失败”钩子必须激活以获得适当的调试。
亚马逊版本缺少pthread_cancel函数to properly execute service destructors. This should not be critical in systems not designed to be shutdown.
Best Regards
你好bobspam@free.fr那
谢谢你的迹象。
谢谢,PM_DIALOG.
你好,
PTHread的亚马逊实现使用非常低的堆栈内存器,以用于创建的线程。
pthread_attr_t must be used to get proper behavior of the overall system by manually setting stack size of each thread.
我也确认互斥锁和消息队列也有效。
条件变量和信号量仍在我身边进行测试。
亚马逊软件随很多其他的好东西提供
- mqtt.
- PKCS11
- TLS
DA1468x的下一个版本可能是256k内存:-)
Thanks