Ta上传的资源 (0)

SAE-2020-J3101美国汽车协会2016年发布的关于车辆硬件安全方面的标准J3101。Automotivecomputersystemsarerequiredtoestablishtrustworthinessthroughdeviceidentity,sealing,attestation

利用开发板上的硬件资源,通过PIC18F452单片机控制蜂鸣器间歇性鸣叫,部分程序如下:voidfengpro(void){if(beepbit==1){beep=1;if(++fengcon>20000){fengcon=0;beepbit=0;}}else{fengcon=0;beep=0;}}

本程序是pic18单片机中的一个实例,通过DS18B20温度传感器对温度的采集,然后在pic18f452单片机控制下实时显示在lcd液晶屏上。部分程序如下:#include//调用头文件,可以去PICC18软件下去查找PIC18FXX2.H__CONFIG(1,XT);//晶振为外部4M__CONF
C 36

通过脉冲的采集得到人的脉搏数~部分程序如下: #include #include #define uchar unsigned char #define uint unsigned int sbit dula=P2^6; sbit wela=P2^7; sbit mc=P1^1; uint PL[1
C 48