- 博客(4)
- 资源 (4)
- 收藏
- 关注
原创 NRF52832配置PWM
NRF52832 SDK11需要匹配波形首先 使能PWM1. 找到nrf_drv_config.h文件#define PWM0_ENABLED 1 //默认0 打开1 下面数据可以不改2.实例化PWMnrf_drv_pwm_t m_pwm0 = NRF_DRV_PWM_INSTANCE(0); //0是PWM0 如果是1 就NRF_DRV_P...
2020-04-17 11:52:23
2716
3
原创 二进制某些为变为0
#include "stdio.h"int main(){ unsigned char Abc=0xff; unsigned char bcd =0; unsigned char ccd =0; //前4位变成0 bcd = Abc & ~(0xf0); //后4位变成0 ccd = Abc & ~(0x0f); ...
2019-12-13 16:08:24
632
原创 nrf 52832 内部flash读写
参考nrf官方资料 例子peripheral\flashwrite/** @brief Function for erasing a page in flash.* 擦除页函数* @param page_address Address of the first word in the page to be erased.*/static void flash_page_e...
2019-10-10 16:09:30
2906
转载 经纬度转换成大地直角坐标(GPS -> 西安80)
#include "stdio.h"#include "math.h"#define PI 3.141592653589793 double AngleToRadian( double alfa){ double alfa1,alfa2; double HS; alfa = alfa + 0.00000000000001; alfa1=floor(alfa)+floor((alfa-floor(a...
2018-07-05 09:37:02
9398
4
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人