ArduinoのTimerについて、自力で何とかしたい。データシートの記述がややこしいので読みたくない。ChatGPTに聞いてみることにする。
今回の課題:
・Timer1の高速PWMモードで任意のDutyの矩形波を割り込みを使わずに出す
・クロックソースは外部入力
では、
日曜技術者 :
please generate an example code of 16-bit Timer/Counter1 of ATMEGA328P on arduino.
ChatGPT :
Sure! Here's an example code of the 16-bit Timer/Counter1 on ATmega328P using Arduino:
#include <avr/io.h> void setup() { // Set timer mode and prescaler TCCR1B |= (1 << WGM12); // CTC mode TCCR1B |= (1 << CS12); // 256 prescaler // Set compare value to generate interrupt at desired frequency OCR1A = 62500; // 16 MHz / (256 prescaler * 1 Hz) - 1 // Enable compare interrupt TIMSK1 |= (1 << OCIE1A); // Set up serial communication Serial.begin(9600); } void loop() { // Do nothing in the main loop } ISR(TIMER1_COMPA_vect) { // This interrupt will be triggered at the frequency set by the compare value Serial.println("Timer interrupt!"); }
This code sets up Timer/Counter1 in CTC (Clear Timer on Compare) mode with a 256 prescaler. The compare value is set to 62500, which will generate an interrupt every 1 second (assuming a 16 MHz clock frequency). The interrupt is enabled and a simple message is printed to the serial monitor in the interrupt service routine (ISR) every time it is triggered. Note that the ISR is defined using the TIMER1_COMPA_vect vector, which corresponds to the compare match A interrupt.
そして、これが動かんのよねー。で、過去、自分が作ったコードをいくつか見てみると、TCCR1A=0, TCCR1B=0がないと動かん風だったので、叱り飛ばす。
日曜技術者 :
your code did not work. TCCR1A=0; and TCCR1B=0; are necessary before "TCCR1B |= (1 << WGM12); // CTC mode".
ChatGPT :
I apologize for the mistake. You're right, it's important to clear the TCCR1A and TCCR1B registers before setting the mode and prescaler for Timer/Counter1. Here's the corrected code:
#include <avr/io.h> void setup() { // Clear Timer/Counter1 registers TCCR1A = 0; TCCR1B = 0; // Set timer mode and prescaler TCCR1B |= (1 << WGM12); // CTC mode TCCR1B |= (1 << CS12); // 256 prescaler // Set compare value to generate interrupt at desired frequency OCR1A = 62500; // 16 MHz / (256 prescaler * 1 Hz) - 1 // Enable compare interrupt TIMSK1 |= (1 << OCIE1A); // Set up serial communication Serial.begin(9600); } void loop() { // Do nothing in the main loop } ISR(TIMER1_COMPA_vect) { // This interrupt will be triggered at the frequency set by the compare value Serial.println("Timer interrupt!"); }
I hope this updated code works correctly for you.
とりあえず動いた。まぁ人間と違ってすぐ謝ってくるんだよねー。で動いたところでモディファイを開始する。まずはOC1Aピンをトグルする動きを追加する。
日曜技術者 :
please update to toggle OC1A pin when the counter reaches the value to compare.
ChatGPT :
Certainly! To toggle the OC1A pin when the counter reaches the compare value, we can use the Output Compare Toggle mode (COM1A0/COM1A1 bits) of Timer/Counter1. Here's the updated code:
#include <avr/io.h> void setup() { // Clear Timer/Counter1 registers TCCR1A = 0; TCCR1B = 0; // Set timer mode and prescaler TCCR1B |= (1 << WGM12); // CTC mode TCCR1B |= (1 << CS12); // 256 prescaler // Set compare value to generate interrupt and toggle OC1A pin OCR1A = 62500; // 16 MHz / (256 prescaler * 1 Hz) - 1 TCCR1A |= (1 << COM1A0); // Toggle OC1A on compare match // Enable compare interrupt TIMSK1 |= (1 << OCIE1A); // Set up OC1A pin as output DDRB |= (1 << PB1); // Set up serial communication Serial.begin(9600); } void loop() { // Do nothing in the main loop } ISR(TIMER1_COMPA_vect) { // This interrupt will be triggered at the frequency set by the compare value Serial.println("Timer interrupt!"); }
In this code, we've set the COM1A0 bit in the TCCR1A register to enable toggle mode on compare match. We've also configured the PB1 pin (which corresponds to the OC1A pin on the ATmega328P) as an output pin, so that we can see the toggle effect on an external LED or oscilloscope.
返事がなぜ"Certainly!"なのか、、、日曜技術者の英語が拙いからだろう。とりあえず、今回も動いた。クロックソースをclkI/Oからではなく、T1へのクロック入力のfalling edgeに変更したい。
日曜技術者 :
please update timer clock source from 256 prescaled clkI/O to falling edge of T1 pin.
ChatGPT :
Sure! To use the external clock source from the T1 pin, we need to set the Timer/Counter1 to External Clock Source (T1 pin) mode (CS12/CS11/CS10 bits). Here's the updated code:
#include <avr/io.h> void setup() { // Clear Timer/Counter1 registers TCCR1A = 0; TCCR1B = 0; // Set timer mode and clock source TCCR1B |= (1 << WGM12); // CTC mode TCCR1B |= (1 << CS12) | (1 << CS11) | (1 << CS10); // External clock source (T1 pin) // Set compare value to generate interrupt and toggle OC1A pin OCR1A = 15624; // 1 Hz frequency (assuming 16 MHz external clock) TCCR1A |= (1 << COM1A0); // Toggle OC1A on compare match // Enable compare interrupt TIMSK1 |= (1 << OCIE1A); // Set up OC1A pin as output DDRB |= (1 << PB1); // Set up serial communication Serial.begin(9600); } void loop() { // Do nothing in the main loop } ISR(TIMER1_COMPA_vect) { // This interrupt will be triggered at the frequency set by the compare value Serial.println("Timer interrupt!"); }
In this code, we've set the CS12, CS11, and CS10 bits in the TCCR1B register to select External Clock Source (T1 pin) mode. We've also updated the OCR1A value to generate an interrupt every 1 second (assuming a 16 MHz external clock frequency). Finally, we've left the COM1A0 bit in the TCCR1A register to enable toggle mode on compare match, and we've configured the PB1 pin as an output pin to see the toggle effect on an external LED or oscilloscope.
これもとりあえず動いた(T1へのクロック入力はFGを使って試している)、、、と思ったら、rising edgeでOC1Aがトグルしていた。falling edgeって言ったじゃん、、、って軽くキレ気味に指摘する。
日曜技術者 :
your code is for rising edge of T1. please update the clock source to the falling edge of T1 pin.
ChatGPT :
I apologize for the mistake in my previous response. To use the falling edge of T1 pin as the clock source, we need to set the Timer/Counter1 to External Clock Source (T1 pin, falling edge) mode (CS12/CS11/CS10 bits). Here's the updated code:
#include <avr/io.h> void setup() { // Clear Timer/Counter1 registers TCCR1A = 0; TCCR1B = 0; // Set timer mode and clock source TCCR1B |= (1 << WGM12); // CTC mode TCCR1B |= (1 << CS12) | (1 << CS11) | (0 << CS10); // External clock source (T1 pin, falling edge) // Set compare value to generate interrupt and toggle OC1A pin OCR1A = 15624; // 1 Hz frequency (assuming 16 MHz external clock) TCCR1A |= (1 << COM1A0); // Toggle OC1A on compare match // Enable compare interrupt TIMSK1 |= (1 << OCIE1A); // Set up OC1A pin as output DDRB |= (1 << PB1); // Set up serial communication Serial.begin(9600); } void loop() { // Do nothing in the main loop } ISR(TIMER1_COMPA_vect) { // This interrupt will be triggered at the frequency set by the compare value Serial.println("Timer interrupt!"); }
In this code, we've set the CS12, CS11, and CS10 bits in the TCCR1B register to select External Clock Source (T1 pin, falling edge) mode. We've also updated the OCR1A value to generate an interrupt every 1 second (assuming a 16 MHz external clock frequency). Finally, we've left the COM1A0 bit in the TCCR1A register to enable toggle mode on compare match, and we've configured the PB1 pin as an output pin to see the toggle effect on an external LED or oscilloscope.
とりあえず、動いた。OC1Apinへのトグル出力と割り込みは関係ないので削除したい。
日曜技術者 :
The event handler and serial output is not necessary. please eliminate.
ChatGPT :
Sure! Here's the updated code without the interrupt service routine and serial output:
#include <avr/io.h> void setup() { // Clear Timer/Counter1 registers TCCR1A = 0; TCCR1B = 0; // Set timer mode and clock source TCCR1B |= (1 << WGM12); // CTC mode TCCR1B |= (1 << CS12) | (1 << CS11) | (0 << CS10); // External clock source (T1 pin, falling edge) // Set compare value to toggle OC1A pin OCR1A = 15624; // 1 Hz frequency (assuming 16 MHz external clock) TCCR1A |= (1 << COM1A0); // Toggle OC1A on compare match // Set up OC1A pin as output DDRB |= (1 << PB1); } void loop() { // Do nothing in the main loop }
In this code, we've eliminated the interrupt service routine and serial output. The Timer/Counter1 is set to External Clock Source (T1 pin, falling edge) mode, and the OCR1A value is updated to generate a 1 Hz frequency (assuming a 16 MHz external clock frequency) and toggle the OC1A pin on compare match. The PB1 pin is configured as an output pin to see the toggle effect on an external LED or oscilloscope.
OCR1A = 10;
に変更して実行した結果です。赤線はFG出力(=T1入力)。黄線はOC1Aピン出力。うまく動いています。ArduinoUNO使っているかと思いきやブレッドボード上の自作回路です。なぜか手元にArduinoUNOが1個もないんだよねー。あれやこれやに使ったからかなー。
ここで、高速PWMモードで出力のDutyを変えようと思います。割り込みを発生させてカウント値またはTOP値を随時変える方法もあるんですが今回は高速PWMでやりきる。
日曜技術者 :
Please change the timer mode from CTC to Fast PWM as output L on OC1A until 100 count then output H on OC1A until 4 count.
ChatGPT :
Sure! Here's the updated code that uses Timer/Counter1 in Fast PWM mode with a 100:4 duty cycle:
#include <avr/io.h> void setup() { // Clear Timer/Counter1 registers TCCR1A = 0; TCCR1B = 0; // Set timer mode and clock source TCCR1A |= (1 << WGM11) | (1 << WGM10); // Fast PWM mode, non-inverted output TCCR1B |= (1 << WGM13) | (1 << WGM12); // Fast PWM mode, non-inverted output TCCR1B |= (1 << CS12) | (1 << CS11) | (0 << CS10); // External clock source (T1 pin, falling edge) // Set compare value to 100 for L output OCR1A = 100; // Set up OC1A pin as output DDRB |= (1 << PB1); } void loop() { // Do nothing in the main loop }
In this code, we've set the TCCR1A and TCCR1B registers to Fast PWM mode with non-inverted output. The OCR1A value is set to 100 to generate the L output on the OC1A pin for the first 100 counts, and then the OCR1A value is set to 4 to generate the H output on the OC1A pin for the remaining counts until the timer overflows and restarts. The CS12, CS11, and CS10 bits in the TCCR1B register are set to select External Clock Source (T1 pin, falling edge) mode. The PB1 pin is configured as an output pin to see the PWM waveform on an external LED or oscilloscope.
コードを見たところ4カウントがどこにも出てこない。イラっとしながら問いただす。
日曜技術者 :
where did you define the 4 count of output H?
ChatGPT :
You are correct, I apologize for the mistake in my previous response. To generate a 100:4 duty cycle waveform on the OC1A pin, we can use Fast PWM mode with ICR1 as the TOP value and set OCR1A to control the duty cycle.
Here is the updated code to generate a 100:4 duty cycle waveform on OC1A:
#include <avr/io.h> void setup() { // Clear Timer/Counter1 registers TCCR1A = 0; TCCR1B = 0; // Set timer mode and clock source TCCR1A |= (1 << WGM11); // Fast PWM mode, non-inverted output TCCR1B |= (1 << WGM13) | (1 << WGM12); // Fast PWM mode, non-inverted output TCCR1B |= (1 << CS12) | (1 << CS11) | (0 << CS10); // External clock source (T1 pin, falling edge) // Set TOP value to 104 ICR1 = 104; // Set compare value to 100 for L output OCR1A = 100; // Set up OC1A pin as output DDRB |= (1 << PB1); } void loop() { // Do nothing in the main loop }
In this updated code, we set the Timer/Counter1 to Fast PWM mode with non-inverted output. We set the ICR1 register to 104, which will give us a frequency of about 153.84 Hz, assuming a 16 MHz external clock frequency. We set the OCR1A register to 100 to generate the L output for the first 100 counts, and then the output will go to H for the remaining 4 counts until the timer overflows and restarts. The CS12, CS11, and CS10 bits in the TCCR1B register are set to select External Clock Source (T1 pin, falling edge) mode. The PB1 pin is configured as an output pin to see the PWM waveform on an external LED or oscilloscope.
相変わらずすぐに謝ってくる。が、とりあえず、動かない。コードを見ると明らかにCOM1A1, COM1A0の設定が抜けている。仕様を見た感じだとCOM1A1=1b, COM1B1=1bじゃないといかん。
日曜技術者 :
your code did not work. you should set COM1A1=1b, COM1A0=1b which are in the TCCR1A register.
ChatGPT :
You are correct. I apologize for the mistake in my previous response. To enable PWM output on OC1A, we need to set the COM1A1 and COM1A0 bits in the TCCR1A register to '1'.
Here is the updated code to generate a 100:4 duty cycle waveform on OC1A:
#include <avr/io.h> void setup() { // Clear Timer/Counter1 registers TCCR1A = 0; TCCR1B = 0; // Set timer mode and clock source TCCR1A |= (1 << COM1A1) | (1 << WGM11); // Fast PWM mode, non-inverted output TCCR1B |= (1 << WGM13) | (1 << WGM12); // Fast PWM mode, non-inverted output TCCR1B |= (1 << CS12) | (1 << CS11) | (0 << CS10); // External clock source (T1 pin, falling edge) // Set TOP value to 104 ICR1 = 104; // Set compare value to 100 for L output OCR1A = 100; // Set up OC1A pin as output DDRB |= (1 << PB1); } void loop() { // Do nothing in the main loop }
In this updated code, we set the TCCR1A register to Fast PWM mode with non-inverted output, and we set the COM1A1 and COM1A0 bits to '1' to enable PWM output on OC1A. We set the ICR1 register to 104, which will give us a frequency of about 153.84 Hz, assuming a 16 MHz external clock frequency. We set the OCR1A register to 100 to generate the L output for the first 100 counts, and then the output will go to H for the remaining 4 counts until the timer overflows and restarts. The CS12, CS11, and CS10 bits in the TCCR1B register are set to select External Clock Source (T1 pin, falling edge) mode. The PB1 pin is configured as an output pin to see the PWM waveform on an external LED or oscilloscope.
またもや簡単に謝ってくるんだが、、、答えを教えてあげたのに言ったとおりにやってない。ていうか、コードの後のコメントは正しく認識しているようだけど、コードには正しく反映されていない。ちょっとイラっとする。
日曜技術者 :
you have made a mistake again. COM1A0 also should be 1 but you have forgotten to descrube it in your code. According to your comment, i know, you know it is necessary, but you did not add in your code.
ChatGPT :
You are correct again, I apologize for the mistake. I should have included the COM1A0 bit in my code as well. Here is the updated code with COM1A0 set to 1:
#include <avr/io.h> void setup() { // Clear Timer/Counter1 registers TCCR1A = 0; TCCR1B = 0; // Set timer mode and clock source TCCR1A |= (1 << COM1A1) | (1 << COM1A0) | (1 << WGM11); // Fast PWM mode, non-inverted output TCCR1B |= (1 << WGM13) | (1 << WGM12); // Fast PWM mode, non-inverted output TCCR1B |= (1 << CS12) | (1 << CS11) | (0 << CS10); // External clock source (T1 pin, falling edge) // Set TOP value to 104 ICR1 = 104; // Set compare value to 100 for L output OCR1A = 100; // Set up OC1A pin as output DDRB |= (1 << PB1); } void loop() { // Do nothing in the main loop }
Again, I apologize for any confusion caused by my previous response.
ちょっときつく言っちゃった、、、そしてまたもや簡単に謝ってくる。が、とりあえず、これで動いた。で、
ICR1=14;
OCR1A=10;
としてやったのがこちら。
とりあえず、今回の課題はクリアした。が、ふつうにgoogleで「高速pwm arduino」と検索すると一発で動くものがまぁまぁいくつも出てくるヘ(゚◇、゚)ノ~
日曜技術者 :
Thank you. it works as expected.
ChatGPT :
You're welcome! I'm glad to hear that the updated code works as expected. If you have any more questions or issues, feel free to ask.
とりあえず、社会人らしくクロージングした。
、、、なんだろなー。Arduinoだと結構Webに情報が多いので、なんとかしてくれそうな気がしたんだけどなー。なんでこのレベルのものが世間で騒がれるのかわからんー。お金出してGPT-4とか使うと賢いのかなー。これしきのことにむしろ自力でやるより苦労するって、、、人類の発展に寄与するとはとても思えん。
<追加試験>今回のことをChatGPTは学んでいるのか、、、
日曜技術者 :
Please generate an example code for Arduino. It outputs H:L=4:10 pulse on OC1A pin using Fast PWM function of timer 1 of ATMEGA328P. And the clock source for timer 1 is falling edge of T1 pin input.
ChatGPT :
Sure, here's an example code for Arduino that meets your requirements:
const byte T1_PIN = 5; const byte OC1A_PIN = 9; void setup() { pinMode(T1_PIN, INPUT); pinMode(OC1A_PIN, OUTPUT); TCCR1A = _BV(COM1A1) | _BV(WGM11); TCCR1B = _BV(WGM13) | _BV(WGM12) | _BV(CS10) | _BV(ICES1); OCR1A = 15624; // (16 MHz / 256) / (4 + 10) = 15624 TIMSK1 = _BV(ICIE1); // enable input capture interrupt } void loop() { // nothing to do here } ISR(TIMER1_CAPT_vect) { static byte counter = 0; if (++counter >= 14) { // 4+10 pulses counter = 0; TCCR1A &= ~_BV(COM1A1); // disable output on OC1A } else if (counter == 4) { TCCR1A |= _BV(COM1A1); // enable output on OC1A } TCNT1 = 0; // reset timer counter }
Here's what this code does:
Defines the T1_PIN and OC1A_PIN constants for the input and output pins, respectively.
Sets the T1_PIN to input mode and the OC1A_PIN to output mode.
Configures Timer 1 (TCCR1A and TCCR1B registers) for Fast PWM mode with ICR1 as TOP, clock source set to falling edge of T1 pin input, and prescaler set to 1 (CS10). Also enables input capture edge select (ICES1).
Sets the output compare register OCR1A to 15624, which gives a frequency of approximately 2.5 kHz (16 MHz / 256 / 14) for the output on OC1A_PIN, corresponding to a duty cycle of 4/14 (H:L=4:10).
Enables input capture interrupt (ICIE1) in the Timer Interrupt Mask Register (TIMSK1).
In the input capture interrupt service routine (ISR), toggles the output on OC1A_PIN high at the 4th pulse and low at the 14th pulse using the counter variable. Also resets the timer counter (TCNT1) to 0 at each pulse.
I hope this helps! Let me know if you have any questions.
、、、(´゚д゚`)
マジgmks
ちなみにbing AI
void setup() { pinMode(9, OUTPUT); TCCR1A = _BV(COM1A1) | _BV(WGM11); TCCR1B = _BV(WGM13) | _BV(WGM12) | _BV(CS10); ICR1 = 2499; } void loop() { OCR1A = 199; delay(1000); OCR1A = 499; delay(1000); }
いや、ぜったいちゃうやろー!!
ちなみにgoogle Bard
// Arduino Fast PWM OC1A example code // // This code outputs a 4:10 pulse on OC1A pin using Fast PWM function of timer 1 of ATMEGA328P. // The clock source for timer 1 is falling edge of T1 pin input. // Pin definitions const int OC1A_PIN = 9; // Timer 1 configuration const int TCCR1A_REG = 0x85; const int TCCR1B_REG = 0x86; const int TCNT1_REG = 0x84; const int OCR1A_REG = 0x87; // Main loop void setup() { // Set OC1A pin as output pinMode(OC1A_PIN, OUTPUT); // Configure timer 1 TCCR1A |= (1 << COM1A1) | (1 << WGM11) | (1 << WGM10); TCCR1B |= (1 << WGM13) | (1 << CS10); OCR1A = 10; } void loop() { // Toggle OC1A pin digitalWrite(OC1A_PIN, HIGH); delay(4); digitalWrite(OC1A_PIN, LOW); delay(10); }
なんでそうなるーーーー????setup()の上にMain loopってコメント書いている時点でゴミ
いつも一緒に仕事している人間の皆さん!あんな複雑なことをよくもいつもさらりとできますねー感謝感謝!!
please inform your area of specialty.
As a language model, I have been trained on a diverse range of tasks and have knowledge on various topics, including but not limited to natural language processing, machine learning, computer science, mathematics, physics, biology, history, literature, and more. However, my main area of specialty is natural language processing, which involves understanding and generating human language. I can assist with tasks such as language translation, language generation, summarization, sentiment analysis, and more. Additionally, I have been trained to engage in conversations and answer questions on a wide range of topics.
i know u sometimes generate codes which can not be compiled by errors for microcontroller or FPGA. do you have correct knowledge of microcontrollers and FPGAs?
As an artificial intelligence language model, I have been trained on a diverse range of topics, including microcontrollers and FPGAs. I have access to information about these topics, and I can generate code snippets and other information related to them. However, I am not an expert in microcontrollers or FPGAs, and my knowledge may not be as deep or specialized as that of an engineer or developer who specializes in these fields.
Additionally, while I can generate code snippets, there may be instances where the code I generate has errors or is not suitable for a particular microcontroller or FPGA. It's always important to thoroughly review and test any code generated by a language model before using it in a project to ensure its correctness and compatibility with the target system.
コメントをお書きください