|
在STM8的标准库中做了选择,STM8S003, /* #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 STM8AF622x */ /*!< STM8A Low density devices */ /* #define STM8S103 */ /*!< STM8S Low density devices */ #define STM8S003 /*!< STM8S Value Line Low density devices */ /* #define STM8S903 */ /*!< STM8S Low density devices */ 编译出现两个错误, Error[Pe513]: a value of type "uint8_t *" cannot be assigned to an entity of type "uint32_t *" D:\work\声眼项目\软件\声眼程序3\Libraries\STM8S_StdPeriph_Driver\src\stm8s_flash.c 624 Error[Pe1578]: case label value has already appeared in this switch at line 180 D:\work\声眼项目\软件\声眼程序3\Libraries\STM8S_StdPeriph_Driver\src\stm8s_itc.c 184 Error[Pe1578]: case label value has already appeared in this switch at line 307 D:\work\声眼项目\软件\声眼程序3\Libraries\STM8S_StdPeriph_Driver\src\stm8s_itc.c 312 请问谁遇到过这类问题,怎么解决的,谢谢 |
STM8S103飞线外接芯片,I2C不能得到slaveAddress应答,通讯失败。
测试标签123
IAR FOR ARM和IAR FOR STM8无法共存,
STM8L052,液晶内部电源怎么用?
STM8S105C6T6 UART2串口,能接收数据,不能发送数据
STM8S105K4 串口2 无奇偶校验,也能接收 偶校验的 数据
在STM8S的IAP使用中断和APP使用中断问题
STM8L151 SMBUS设计
STM8S103F复位异常
STM8L的LCD调试时不亮
微信公众号
手机版
Error[Pe513]是指针类型不一致,一个是"uint8_t *",另一个是"uint32_t *";
Error[Pe1578]是case值冲突,同一个switch中出现了两个相同的case值,看一下 180和184行,是否相同。
评分
查看全部评分