【RT-Thread】 启用hash算法软件包

参考文章 

哈希匹配算法在单片机上的应用

近来单片机开发因业务需求需要用hash算法,为开启此功能,在RT-Thread Studio环境下操作如下:

1,在RT-Thread Setttings里面的搜索栏里输入hash,然后定位到下图所示

【RT-Thread】 启用hash算法软件包_第1张图片

 使能hash match for MCU和Enable hash match demo,然后保存并编译,出现如下错误

 2,修改连接脚本,参考上面文章,在在link.lds文件的.text段中添加代码加入如下代码

        /* this is for GROUP hash_match_test of hash_match library. */
        . = ALIGN(4);
        PROVIDE(hash_match_test_start = .);
        KEEP(*(hash_match_test))
        . = ALIGN(4);
        PROVIDE(hash_match_test_end = .);
        
        /* this is for GROUP hash_match_test1 of hash_match library. */
        . = ALIGN(4);
        PROVIDE(hash_match_test1_start = .);
        KEEP(*(hash_match_test))
        . = ALIGN(4);
        PROVIDE(hash_match_test1_end = .);

        . = ALIGN(4);

 然后保存,并编译,没有意外的话,编译可以通过。

你可能感兴趣的:(嵌入式随笔,笔记)