五月天青色头像情侣网名,国产亚洲av片在线观看18女人,黑人巨茎大战俄罗斯美女,扒下她的小内裤打屁股

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

CH32F103C8T6滴答定時器應(yīng)用

2023-02-02 18:15 作者:高_(dá)電平  | 我要投稿

//中斷方式

SysTick_Config(72000000/5);

void SysTick_Handler(void)

{

?GPIO_WriteBit( GPIOA, GPIO_Pin_0,!GPIO_ReadOutputDataBit( GPIOA, GPIO_Pin_0));

}


非中斷方式

//1s? 72000000? ? 1us? 72

void delay_us(uint32_t us)

{

SysTick->CTRL = 0;? ? // Disable SysTick

SysTick->LOAD = 72*us-1; // Count from 255 to 0 (256 cycles)

SysTick->VAL = 0;? ? ?// Clear current value as well as count flag

SysTick->CTRL = 5;? ? // Enable SysTick timer with processor clock

while ((SysTick->CTRL & 0x00010000)==0);// Wait until count flag is set

SysTick->CTRL = 0; // Disable SysTick

}



//1s? 72000000? ? 1ms? 72000

void delay_ms(uint32_t ms)

{

while(ms--)

{

SysTick->CTRL = 0;? ? // Disable SysTick

SysTick->LOAD = 72000-1; // 計數(shù)值

SysTick->VAL = 0;? ? ?// Clear current value as well as count flag

SysTick->CTRL = 5;? ? // Enable SysTick timer with processor clock

while ((SysTick->CTRL & 0x00010000)==0);// Wait until count flag is set

SysTick->CTRL = 0; // Disable SysTick

}

}


void delay_s(uint32_t s)

{

while(s--)

{

delay_ms(1000);

}

}


CH32F103C8T6滴答定時器應(yīng)用的評論 (共 條)

分享到微博請遵守國家法律
攀枝花市| 石台县| 札达县| 馆陶县| 郴州市| 阆中市| 政和县| 泾源县| 五莲县| 广饶县| 确山县| 德阳市| 布拖县| 清新县| 安乡县| 横峰县| 太仓市| 盖州市| 甘孜| 贵阳市| 钟祥市| 威海市| 江达县| 梁平县| 寻乌县| 呈贡县| 烟台市| 开阳县| 家居| 遵义市| 石河子市| 吉首市| 东丰县| 堆龙德庆县| 宝清县| 万山特区| 晋江市| 改则县| 张掖市| 彰武县| 兴安县|