gpt4 book ai didi

c - 如何使用 Atmel Studio 中的调试器来使用 scanf?

转载 作者:行者123 更新时间:2023-11-30 16:19:18 27 4
gpt4 key购买 nike

当我逐行调试程序直到到达 scanf 语句时,IDE 会显示一个“反汇编”选项卡,该选项卡不会以任何方式改善情况。调试程序时,一旦到达 scanf 语句,如何在程序中输入 key ???

代码:

#include <avr/io.h>
#include <stdio.h>

int main(void)
{
DDRA = 0x00; //PORTA = 0x00;
DDRB = 0xFF; //PORTB = 0x00;

typedef enum {
firstkey,
secondkey,
dooropens,
}doorstate;

doorstate state = firstkey;
char secretkey;
while (1)
{
switch(state)
{
case firstkey:
scanf("%c", secretkey); //?????
if (secretkey == '#') {
PORTA == 0x01 << 3;
state = secondkey;
}
else
state = firstkey;
break;
case secondkey:
scanf("%c", secretkey);//?????
if (secretkey == 'Y') {
PORTA = PORTA | 0x02;
state = dooropens;
}
else
state = firstkey;
break;
case dooropens:
PORTB = 0x01;
if (PORTA == 0x80) {
state = firstkey;
PORTB = 0x00;
}
break;
default:
state = firstkey;
}
}
}

最佳答案

反汇编可能是因为您进入而不是越过库函数。在这种情况下,调试器无法使用库函数源代码,因此它别无选择,只能向您显示程序集。

使用单步执行,函数将正常运行并接受输入,控制权将在函数返回后返回到调试器。

关于c - 如何使用 Atmel Studio 中的调试器来使用 scanf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55661700/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com