]> kolegite.com Git - vmks.git/commitdiff
File name fix
authorIvan Stefanov <istefanov@elsys-bg.org>
Tue, 24 Nov 2020 15:29:49 +0000 (17:29 +0200)
committerIvan Stefanov <istefanov@elsys-bg.org>
Tue, 24 Nov 2020 15:29:49 +0000 (17:29 +0200)
Examples/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM.ino [deleted file]
Examples/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM.png [deleted file]
Examples/Timer_1_COMPA_and_OVF_10kHz_PWM/Timer_1_COMPA_and_OVF_10kHz_PWM.ino [new file with mode: 0644]
Examples/Timer_1_COMPA_and_OVF_10kHz_PWM/Timer_1_COMPA_and_OVF_10kHz_PWM.png [new file with mode: 0644]

diff --git a/Examples/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM.ino b/Examples/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM.ino
deleted file mode 100644 (file)
index a592e20..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-void setup() {
-  // Set pin 13 to output
-  pinMode(13, OUTPUT);
-  
-  // Stop reception of interrupts
-  noInterrupts(); //cli();
-
-  // Set PB1 to be an output (Pin9 Arduino UNO)
-  DDRB |= (1 << PB1);
-  
-  // Clear Timer/Counter Control Registers
-  TCCR1A = 0;
-  TCCR1B = 0;
-  TIMSK1 = 0;
-  
-  // Set non-inverting mode - Table 15-3 (page 108)
-  TCCR1A |= (1 << COM1A1);
-  
-  // Set Fast-PWM Mode (Mode 14) - Table 15-5 (page 109)
-  TCCR1A |= (1 << WGM11);
-  TCCR1B |= (1 << WGM12);
-  TCCR1B |= (1 << WGM13);
-  
-  // Clear Timer 1 Counter
-  TCNT1  = 0;
-  
-  // Set PWM frequency/top value - Output PWM 10kHz
-  ICR1 = 199;   // Fclk_io / (Fout * Prescaler) - 1
-  OCR1A = 100;  // Output OC1A will be ON for [OCR1A/(ICR1+1)]% of the time -> 100/(199+1) = 50%
-  
-  // Enable compare match interrupt
-  TIMSK1 |= (1 << OCIE1A);
-  TIMSK1 |= (1 << TOIE1);
-  
-  // Set prescaler to 8 and starts PWM
-  TCCR1B |= (1 << CS11);
-
-  // Enables interrupts
-  interrupts(); //sei();
-}
-
-void loop() {
-  // Empty
-}
-
-//Timer1 Compare Match Interrupt turns OFF pin 13 (LED)
-ISR(TIMER1_COMPA_vect) {
-  digitalWrite(13, LOW);
-}
-
-//Timer1 Overflow Interrupt turns ON pin 13 (LED)
-ISR(TIMER1_OVF_vect) {
-  digitalWrite(13, HIGH);
-}
diff --git a/Examples/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM.png b/Examples/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM.png
deleted file mode 100644 (file)
index c664e27..0000000
Binary files a/Examples/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM/Timer_1_COMPA_and_OVF_10kHz_Hardware_pin-9_and_Software_pin-13_PWM.png and /dev/null differ
diff --git a/Examples/Timer_1_COMPA_and_OVF_10kHz_PWM/Timer_1_COMPA_and_OVF_10kHz_PWM.ino b/Examples/Timer_1_COMPA_and_OVF_10kHz_PWM/Timer_1_COMPA_and_OVF_10kHz_PWM.ino
new file mode 100644 (file)
index 0000000..a592e20
--- /dev/null
@@ -0,0 +1,54 @@
+void setup() {
+  // Set pin 13 to output
+  pinMode(13, OUTPUT);
+  
+  // Stop reception of interrupts
+  noInterrupts(); //cli();
+
+  // Set PB1 to be an output (Pin9 Arduino UNO)
+  DDRB |= (1 << PB1);
+  
+  // Clear Timer/Counter Control Registers
+  TCCR1A = 0;
+  TCCR1B = 0;
+  TIMSK1 = 0;
+  
+  // Set non-inverting mode - Table 15-3 (page 108)
+  TCCR1A |= (1 << COM1A1);
+  
+  // Set Fast-PWM Mode (Mode 14) - Table 15-5 (page 109)
+  TCCR1A |= (1 << WGM11);
+  TCCR1B |= (1 << WGM12);
+  TCCR1B |= (1 << WGM13);
+  
+  // Clear Timer 1 Counter
+  TCNT1  = 0;
+  
+  // Set PWM frequency/top value - Output PWM 10kHz
+  ICR1 = 199;   // Fclk_io / (Fout * Prescaler) - 1
+  OCR1A = 100;  // Output OC1A will be ON for [OCR1A/(ICR1+1)]% of the time -> 100/(199+1) = 50%
+  
+  // Enable compare match interrupt
+  TIMSK1 |= (1 << OCIE1A);
+  TIMSK1 |= (1 << TOIE1);
+  
+  // Set prescaler to 8 and starts PWM
+  TCCR1B |= (1 << CS11);
+
+  // Enables interrupts
+  interrupts(); //sei();
+}
+
+void loop() {
+  // Empty
+}
+
+//Timer1 Compare Match Interrupt turns OFF pin 13 (LED)
+ISR(TIMER1_COMPA_vect) {
+  digitalWrite(13, LOW);
+}
+
+//Timer1 Overflow Interrupt turns ON pin 13 (LED)
+ISR(TIMER1_OVF_vect) {
+  digitalWrite(13, HIGH);
+}
diff --git a/Examples/Timer_1_COMPA_and_OVF_10kHz_PWM/Timer_1_COMPA_and_OVF_10kHz_PWM.png b/Examples/Timer_1_COMPA_and_OVF_10kHz_PWM/Timer_1_COMPA_and_OVF_10kHz_PWM.png
new file mode 100644 (file)
index 0000000..c664e27
Binary files /dev/null and b/Examples/Timer_1_COMPA_and_OVF_10kHz_PWM/Timer_1_COMPA_and_OVF_10kHz_PWM.png differ