📄 exercise_05.txt
字号:
void Exercise_05(void)
{
static word ex05_count;
if(ex05_count == 0)
{
AcquireTemperature(); // Read temperature from sensor
UpdateCelsiusASCII(); // Convert to ASCII, stored in
// "tempString", See temperature.c
/* Modify the code below - 3 lines */
if(mUSBUSARTIsTxTrfReady())
{
putsUSBUSART(tempString);
ex05_count = 10000;
}
/* End */
}
else
ex05_count--;
}//end Exercise_05
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -