
TC275单片机实例
路 一直都在
这个作者很懒,什么都没留下…
展开
-
TC275 Multican代码示例
core0_main文件int core0_main(void){ /* * !!WATCHDOG0 AND SAFETY WATCHDOG ARE DISABLED HERE!! * Enable the watchdog in the demo if it is required and also service the watchdog periodically * */ /* Initialise the application state */原创 2020-07-16 21:30:18 · 3642 阅读 · 7 评论 -
TC275简单实例一:软件中断
#define sortprio 3#define IFX_INTPRIO_STM0_SR0 10void handler_CPU0(void) //软件中断服务函数{IfxSrc_clearRequest(&SRC_GPSR_GPSR0_SR0); //清除标志位IfxPort_togglePin(&MODULE_P33, 7); }void SW_int(void){IfxPort_setPinMode(&am原创 2020-05-18 11:38:25 · 2047 阅读 · 2 评论