摘要: uint8_t rtcmbytes[1200] = {0}; uint32_t rtcm_size = 0; static uint32_t SetRTCM3Data(uint64_t data, uint8_t bits, uint8_t *rtcmbytes, uint8_t end_flag) 阅读全文
posted @ 2024-04-10 15:45 妖岭 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1.ifconfig wlan0 up 启动wifi 2.iwlist wlan0 scanning 搜寻wifi(接天线) 3.默认情况下,开发板根文件系统/etc目录下会有一个名为“wpa_supplicant.conf”的配置文件, 没有的话就自行创建。此文件用于配置要连接的WIFI 热点以及 阅读全文
posted @ 2024-02-28 14:08 妖岭 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 当在Linux机器上ping域名,提示 ping: www.baidu.com: Name or service not known 这说明绝大部分原因是由于dns服务器没有配置导致的问题。DNS:8.8.8.8 或者 114.114.114.114 1.可以直接在/ect/syconfig/net 阅读全文
posted @ 2024-02-28 14:00 妖岭 阅读(73) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://earth.google.com/kml/2.1"> <Document> <Placemark> <name>65753.000000</name> <Style><PointSty 阅读全文
posted @ 2024-02-06 11:28 妖岭 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 1. Failed to load flash loader: C:\Program Files\IAR Systems\Embedded Workbench 9.1\arm/config/flashloader/Infineon/FlashCYT4_8M_CFLASH.flash project= 阅读全文
posted @ 2024-01-19 13:41 妖岭 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 1. 修改diskio.c /* */ /* Low level disk I/O module SKELETON for FatFs (C)ChaN, 2019 */ /* */ /* If a working storage control module is available, it sho 阅读全文
posted @ 2023-12-29 16:32 妖岭 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1.keil(ARMCLANG编译器)编译C++的Vector,将在主堆空间; 2.stm32cubeide(arm-none-eabi-g++)编译C++的Vector,将在RAM空间; 阅读全文
posted @ 2023-12-29 15:00 妖岭 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Arm® Compiler6 支持C/C++混编 C++不支持Use MicroLIB,解决Keil的printf问题,现象:Debug下,点击三次run可以运行,烧入芯片独立运行死机 #ifdef __cplusplus extern "C" { #endif #define DEFAULT_HA 阅读全文
posted @ 2023-12-05 17:43 妖岭 阅读(59) 评论(0) 推荐(0) 编辑
摘要: Ntrip通讯协议1.0 1. Ntrip协议 CORS(Continuously Operating Reference Stations)就是网络基准站,通过网络收发GPS差分数据。用户访问CORS后,不用单独架设GPS基准站,即可实现GPS流动站的差分定位。 访问CORS系统,就需要网络通讯协 阅读全文
posted @ 2023-12-05 14:25 妖岭 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 1. 测试 //ATK-SIM900A 各项测试(拨号测试、短信测试、GPRS测试)共用代码 //sim900a发送命令后,检测接收到的应答 //str:期待的应答结果 //返回值:0,没有得到期待的应答结果 // 其他,期待应答结果的位置(str的位置) uint8_t* sim900a_chec 阅读全文
posted @ 2023-12-05 13:46 妖岭 阅读(36) 评论(0) 推荐(0) 编辑