c - 为什么在main中需要一个while循环来调用arduino UNO中的ISR?

标签 c arduino microcontroller arduino-uno isr

我正在编写 C 代码,并将其上传到 arduino uno。这是学习如何在 C 中调用 ISR 的简单练习。代码如下:

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


int main(){

 DDRB        = 0;
 PORTB       = 0;
 DDRB        = (1<<5);
 PORTB       = (0<<5);

 //resetting the Timer/Counter1
 TCNT1H         = 0;
 TCNT1L         = 0;  

 //disabling all global interrupts
 SREG         = 0;

 //defining prescalar

 //TCCR1B: ICNC1 ICES1 – WGM13 WGM12 CS12 CS11 CS10
 TCCR1B = 0;
 //TCCR1B_reg = CS11_val; WORKING SETTINGS
 TCCR1B = 0b00000101;//(1<<CS10_val)|(1<<CS12_val);

 //setting up PWM mode

 //TCCR1A: COM1A1 COM1A0 COM1B1 COM1B0 COM1C1 COM1C0 WGM11 WGM10
 TCCR1A      = 0; //this is for waveform generation and CTC setting up mode;
 //TCCR1A      = 0b10000000;//(1<<COM1A1_val);
 TCCR1A      = COM1A1;

 OCR1AH      = 0b10011100;//0b00000000;
 OCR1AL      = 0b01000000;//0b01000000;

 TIMSK1      = 0b00100010;//(1<<ICIE1_val)|(1<<OCIE1A_val);//0b00100010;//writing so that output compare A is set up

 //enable global interrupts
 SREG         = (1<<7);
 while(1){}

 return 0;

}

ISR(TIMER1_COMPA_vect){
  PORTB = PORTB^(1<<5);
}

有趣的是,当我去掉“while(1){}”时,代码似乎无法切换 PinB5(arduino uno 上的内置 LED)。当我添加到 while 循环中时,我看到 PinB5 切换。奇怪的是,当我想使用定时器来制作直接输出到引脚的 PWM 时,我不需要使用 while 循环。

以防万一你们好奇,以下是我上传到 arudino-uno 的方法:

avr-gcc -Os -DF_CPU=16000000UL -mmcu=atmega328p -c -o ISR_example.o ISR_example.c
avr-gcc -mmcu=atmega328p ISR_example.o -o ISR_example
avr-objcopy -O ihex -R .eeprom ISR_example ISR_example.hex

read -p "Get ready to flash!"
#flashing the Arduino:
avrdude -C/home/ashwini/Downloads/arduino-1.8.3/hardware/tools/avr/etc/avrdude.conf -v -patmega328p -carduino -P/dev/ttyACM0 -b115200 -D -Uflash:w:ISR_example.hex:i

最佳答案

非常简单的答案。当 main 在大多数 AVR 工具链上返回时,它会执行 cli 指令以禁用中断,然后以不定式循环结束。这是 AVR 裸机工具链中最常见的尾声例程。

这就是当您退出main时发生的情况

00000078 <_exit>:
  78:   f8 94           cli

0000007a <__stop_program>:
  7a:   ff cf           rjmp    .-2         ; 0x7a <__stop_program>

您可以通过修改启动程序集文件来更改它(它也包含尾声)。

关于c - 为什么在main中需要一个while循环来调用arduino UNO中的ISR?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45538674/

相关文章:

用于捕获空取消引用的 C 预处理器宏

c++ strtok 跳过第二个标记或连续的定界符

c++ - 无法使用 Adafruit Motor Shield V2.3 驱动直流电机

c - 尝试让 UART 在 dsPIC33EV256GM102 上工作

algorithm - 8位微 Controller 上的线性插值

c - 错误 C3861 : 'ls_file' : identifier not found

c - 使用 netlink 进行内核空间用户空间通信

arduino - 如何使用带有 PT100 RTD 传感器的 arduino uno 板读取温度?

java - 如何从 Arduino 接收数据?

c - 如何限制中断驱动的 UART 传输 PIC24H?