初级会员
- 积分
- 114
- 金钱
- 114
- 注册时间
- 2014-7-2
- 在线时间
- 17 小时
|
发表于 2020-8-17 10:07:07
|
显示全部楼层
看来大家都出师了,最近在搞soc单片机
static void RoutinePriorityConfig(void)
{
/**
ÖD¶ÏóÅÏ輶¿ØÖÆ: 0-->μíóÅÏ輶,
1-->′ÎóÅÏ輶,
2-->¸ßóÅÏ輶,
3-->ìØóÅÏ輶
**/
#define __PPCA 0
#define __PLVD 0
#define __PADC 0
#define __PS 0
#define __PT2 0
#define __PT1 0
#define __PX1 0
#define __PT0 0
#define __PX0 0
// IP= ((__PPCA&0x01)<<7)+((__PLVD&0x01)<<6)+((__PADC&0x01)<<5)+
// ((__PS&0x01)<<4)+((__PT1&0x01)<<3)+((__PX1&0x01)<<2)+((__PT0&0x01)<<1)+(__PX0&0x01);
// IPH=((__PPCA&0x02)<<7)+((__PLVD&0x02)<<6)+((__PADC&0x02)<<5)+
// ((__PS&0x02)<<4)+((__PT1&0x02)<<3)+((__PX1&0x02)<<2)+((__PT0&0x02)<<2)+(__PX0&0x02);
IP= (__PADC<<6)+(__PT2<<5)+(__PS<<4)+(__PT1<<3)+(__PX0<<2)+(__PT0<<1)+(__PX0);
// #define __ELVDI 0 //lvdÖD¶Ïê1Äü
// AUXR |= (__ELVDI<<2); |
|