STM8s官方固件库 /* #define STM8S208 */ /*!< STM8S High density devices with CAN */ /* #define STM8S207 */ /*!< STM8S High density devices without CAN */ /* #define STM8S007 */ /*!< STM8S Value Line High density devices */ /* #define STM8AF52Ax */ /*!< STM8A High density devices with CAN */ /* #define STM8AF62Ax */ /*!< STM8A High density devices without CAN */ /* #define STM8S105 */ /*!< STM8S Medium density devices */ /* #define STM8S005 */ /*!< STM8S Value Line Medium density devices */ /* #define STM8AF626x */ /*!< STM8A Medium density devices */ /* #define STM8S103 */ /*!< STM8S Low density devices */ #define STM8S003 /*!< STM8S Value Line Low density devices *///配置库文件
2019-12-21 19:54:03 10.31MB STM8s 固件库
1
/*************** 深圳市赛亿科技开发有限公司 ******************** * 文件名 : adc * 描述 :多通道AD采集(源文件) * 实验平台 :STM8S105开发板 * 库版本 :V1.0 * 作者 :hcr * QQ :630054913 * 修改时间 :2014-9-20 *******************************************************************************/ #include "adc.h" u16 AdcData_Buff[10]; //AD采集缓存 u16 AdcValue_Channel1; //通道1值 u16 AdcValue_Channel2; //通道2值 u16 AdcValue_Channel3; //通道3值 float Adc_V1; //通道1值电压值 float Adc_V2; //通道2值电压值 float Adc_V3; //通道3值电压值 /************************************************************************** * 函数名:Adc_Task(void) * 描述 :AD不通通道选择 * 输入 :无 * 输出 :无 * 返回 :无 * 调用 :10ms调用 *************************************************************************/ void Adc_Task(void) { static u8 Adc_Channel = 1; static u8 Adc_Timer = 0; static u16 Adc_GetValue; switch(Adc_Channel)//通道选择 { case 1: //通道1 Adc_GetValue = ADC1_GetConversionValue(); //获取ADC转换数 AdcData_Buff[Adc_Timer]=Adc_GetValue; //保存采样值 if(Adc_Timer8) { Adc_Timer = 0; //复位 Temp_Choose(); //冒泡法求中间值 AdcValue_Channel1=AdcData_Buff[5]; //取中间值 Adc_V1 = (3.28*AdcValue_Channel1)/1023; //算出实际电压 AdcData_Clean(); //清除缓存数据 Adc_Channel = 2; //另一通道 AdcChannel_Start(ADC1_CHANNEL_2); //ADC,通道2启动 } break; case 2: //通道2
2019-12-21 19:51:16 312KB stm8s AD多通道采集
1
底层采用stm8s,通过本软件可以实现对Esam的操作,读取写入等等
2019-12-21 19:47:47 127KB esam,stm8s
1
STM8S 按键扫描 完美版 多平台可使用。不占用资源。效果明显。
2019-12-21 19:46:55 229KB STM8S 按键扫描 完美版
1
STM8S 0.96寸OLED(4线SPI)驱动程序
2019-12-21 19:21:01 408KB STM8S OLED 驱动程序
1
Main Changes • Suppression of STM8L devices with charge-transfer (CT) acquisition. Note: These devices and the CT acquisition are now supported in the new STMTouch driver. • Only STM8S/A devices with RC acquisition are now supported in this driver. • Driver name changed from "STM8 TouchSensing Driver" to "STM8S TouchSensing Driver".
2019-12-21 18:58:20 1.46MB STM8S TS
1
基于stm8s处理器,对sx1276的SPI接口进行控制,完成节点间的通信与信号强度提取。IAR开发环境下的c代码
2019-12-21 18:58:06 5.54MB lora sx1276 stm8s
1
STM8S输出PWM控制模拟舵机+MPU6050陀螺仪信号解码,用于玩具机器人控制
2019-12-21 18:56:05 44KB STM8S PWM 模拟舵机 MPU6050
1
这是关于stm8s的例程,包括定时器,can总线,i2c等模块,有助于新手学习stm8s
2019-12-21 18:54:42 1.17MB 例程
1
基于stm8s103 的电阻式触摸按键源代码,很好
2019-12-21 18:49:48 16KB stm8s 触摸按键
1