gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 16:43:04 26 4
gpt4 key购买 nike

我正在编写 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/

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