Commit Graph

642 Commits

Author SHA1 Message Date
daishengdong
0a2d5a4e90 support elfloader for shared object and relocatable object
1. elfloader for shared object
example: TencentOS-tiny\examples\elfloader_shared_object
keil: TencentOS-tiny\board\TencentOS_tiny_EVB_MX_Plus\KEIL\elfloader_shared_object

2. elfloader for relocatable object:
example: TencentOS-tiny\examples\elfloader_relocatable_object
keil: TencentOS-tiny\board\TencentOS_tiny_EVB_MX_Plus\KEIL\elfloader_relocatable_object

3. TODO:
- add icache/dcache flush when module is loaded
- support more relocation type in elfloader_arch_relocate
2020-06-09 19:30:38 +08:00
Supowang
dc0c649c7c Merge pull request #170 from Mculover666/master
add lorawan project of stm32wl
2020-06-09 10:12:47 +08:00
mculover666
fe6803fa40 add lorawan project 2020-06-08 21:40:22 +08:00
Mculover666
7761a3acdb Merge pull request #8 from Tencent/master
merge
2020-06-08 21:34:41 +08:00
Arthur
d9394d7580 Merge pull request #168 from DavidLin1577/patch-8
Fixed the wrong notes in tos_barrier.h
2020-06-08 19:57:47 +08:00
Arthur
a4fbf99910 Merge pull request #167 from DavidLin1577/patch-7
Added the missing parameter note
2020-06-08 19:57:36 +08:00
Arthur
0786b9f60c Merge pull request #166 from DavidLin1577/patch-6
Fixed some wrong notes in tos_mmblk.h
2020-06-08 19:57:25 +08:00
Arthur
fd9133613f Merge pull request #169 from DavidLin1577/patch-9
Fixed the wrong notes in tos_completion.h
2020-06-08 19:57:01 +08:00
supowang
8c488a8dfb add lora reconnect code for pm2.5 project
add lora reconnect code for pm2.5 project
2020-06-08 16:52:11 +08:00
Supowang
92eda5fddc Merge pull request #163 from DavidLin1577/patch-3
Update tencent_firmware_module_wrapper.h
2020-06-08 10:23:38 +08:00
Supowang
5ab4f41437 Merge pull request #164 from DavidLin1577/patch-4
Update esp8266_evtdrv.h
2020-06-08 10:23:15 +08:00
Supowang
0b8bb4f7fc Merge pull request #165 from DavidLin1577/patch-5
Update 19.TencentOS_Tiny_Simulator_Use_MDK.md
2020-06-08 10:22:34 +08:00
David Lin
9fe12a77ab Added the missing parameter notes 2020-06-08 00:14:32 +08:00
David Lin
6be5884938 Update tos_priority_queue.h 2020-06-07 23:50:42 +08:00
David Lin
48a7d23c20 Update tos_completion.h
删除多余参数注释
2020-06-07 23:31:16 +08:00
David Lin
a2a4e1de20 Update tos_barrier.h 2020-06-07 23:20:26 +08:00
David Lin
a4b310e04d Update tos_barrier.h
修改错误的函数注释
2020-06-07 23:10:38 +08:00
David Lin
c40ec13aa7 Added the missing parameter note 2020-06-06 18:19:37 +08:00
David Lin
4439798c7d Fixed some wrong notes in tos_mmblk.h
1. tos_mmblk_pool_create与tos_mmblk_alloc函数注释重复
2. tos_mmblk_pool_destroy与tos_mmblk_free函数注释重复
2020-06-06 17:55:31 +08:00
David Lin
9c7327662b Update 19.TencentOS_Tiny_Simulator_Use_MDK.md
删除多余描述字“开”
2020-06-06 17:17:44 +08:00
David Lin
6b508b4184 Update tos_at_evtdrv.h
_TOS_AT_H_ -> _TOS_AT_EVTDRV_H_
2020-06-06 10:47:45 +08:00
David Lin
0316ef630d Update tos_at_utils_evtdrv.h
_TOS_AT_UTILS_H_ -> _TOS_AT_UTILS_EVTDRV_H_
2020-06-06 10:43:08 +08:00
David Lin
b1169d663f Update esp8266_evtdrv.h
__ESP8266_H__ ->__ESP8266_EVTDRV_H__
2020-06-06 10:35:22 +08:00
David Lin
bfa9aa5327 Update tencent_firmware_module_wrapper.h
Delete needless note(@param[in])
2020-06-06 09:57:50 +08:00
Mculover666
bd78b9a2df Merge pull request #7 from Tencent/master
merge
2020-06-05 18:09:09 +08:00
daishengdong
5861290e43 fix hardfault backtrace support for iccarm 2020-06-03 20:37:10 +08:00
daishengdong
f7195c79a7 fix cortex m0/m0+ fault backtrace in armcc
1. no support for mrseq for cortex m0/m0+ cpu instructions set
2020-06-03 17:26:37 +08:00
Supowang
479dc02d79 Update README.md 2020-06-03 15:32:07 +08:00
supowang
334ba93fbd update ReadMe
update ReadMe
2020-06-03 15:24:40 +08:00
daishengdong
7f4b0b2582 add fatfs through vfs for EVB plus
1. see board\TencentOS_tiny_EVB_MX_Plus\KEIL\fatfs_through_vfs
2020-06-02 21:31:11 +08:00
Supowang
5ed72770f5 Update RegionCN470.c 2020-06-02 16:10:08 +08:00
supowang
595cd6f0d2 fix lorawan class A demo for RHF76_052DM board
LoRaMac-node-4.4.4 demo
2020-06-02 16:06:58 +08:00
daishengdong
5b51d50ade add ota algorithm for device
1. effective "Differential Upgrade" patch algorithm with high compression rate
2. effective recovery algorithm support recovery firmware in blocks which has low memory consumption and wear-leveling strategies, especially suitable for embeded devices with low RAM.
3. add sample ota bootloader project, see:
board\TencentOS_tiny_EVB_MX_Plus\KEIL\ota\ota_bootloader_recovery
4. add sample application project for download firmware through http, see:
board\TencentOS_tiny_EVB_MX_Plus\KEIL\ota\ota_application_download_through_http
5. add sample application project for download firmware through qcloud explorer console, see:
board\TencentOS_tiny_EVB_MX_Plus\KEIL\ota\ota_application_download_through_qcloud_iot_explorer
6. an OTA markdown document is pending
2020-06-02 15:03:42 +08:00
supowang
84faf16765 Update RHF76.c
fix bug for lora incoming buffer
2020-05-29 15:30:10 +08:00
supowang
f9bd2588a2 Update LoRaMac-node to Version 4.4.4,fix Security breach found by Tencent Blade Team please refer to security advisory - CVE-2020-11068
fix Security breach found by Tencent Blade Team please refer to security advisory - CVE-2020-11068
2020-05-29 11:59:05 +08:00
Supowang
5d9895cecc Update lora_demo.c 2020-05-28 17:35:36 +08:00
Supowang
58a621a6fe Update lora_demo.c 2020-05-28 17:34:51 +08:00
Supowang
6687159b16 Update lora_demo.c 2020-05-28 17:33:08 +08:00
supowang
18103937b6 Update Partners.png 2020-05-22 17:17:37 +08:00
supowang
eeb2090d50 add N32G4XM_STB board support
add nationz N32G4XM_STB board support
2020-05-22 16:39:39 +08:00
supowang
adaac8789f add mqtt client support for ec20 LTE DTU
add mqtt client support for ec20 LTE DTU
2020-05-22 11:57:26 +08:00
Supowang
5906021658 Merge pull request #161 from Mculover666/master
modify ec20 recv mode
2020-05-22 11:11:20 +08:00
mculover666
15538ed777 fix send bug 2020-05-22 11:06:43 +08:00
mculover666
36a9311c2c modify code style 2020-05-21 22:24:11 +08:00
mculover666
c0f2470aae modify ec20 recv mode 2020-05-21 22:14:52 +08:00
Mculover666
b6434a6181 Merge pull request #6 from Tencent/master
拉取更新
2020-05-21 22:08:11 +08:00
supowang
ac2dc8c5d2 add pm2.5 demo for evbmx+
add pm2.5 demo for evbmx+
2020-05-19 19:37:04 +08:00
supowang
db4663d33d add iot explorer demo for LN882x
add iot explorer demo for LN882x
2020-05-19 15:47:33 +08:00
Supowang
ecebc6e6ac Merge pull request #159 from acevest/lilygo
add support for LilyGO T-Display-GD32V board
2020-05-18 12:39:48 +08:00
acevest
64a6e372ae add support for LilyGO T-Display-GD32V board 2020-05-18 02:34:31 +08:00