AVR PWM: Issue with OCR0B
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I learning AVR programming through a book. In which there's a program to implement PWM on any pin
This is the program
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << OCIE0B);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
OCR0A = brightnessA;
OCR0B = brightnessB;
}
ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}
ISR(TIMER0_COMPB_vect) {
LED_PORT &= 0b00001111; // turn off high four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
brightnessA = i;
brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
brightnessA = i;
brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
It works fine and here's signal in simulator OCR0A & OCR0B
Then I changed code so that PWM only with OCR0A
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
OCR0A = brightnessA;
}
ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
brightnessA = i;
//brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
brightnessA = i;
//brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
It works fine too, here's the signal OCR0A
Then I changed the code this time only OCR0B
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
//TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << OCIE0B);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
//OCR0A = brightnessA;
OCR0B = brightnessB;
}
/*ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}*/
ISR(TIMER0_COMPB_vect) {
LED_PORT &= 0b00001111; // turn off high four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
//brightnessA = i;
brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
//brightnessA = i;
brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
Bit it's not working, OCR0B
Why?
avr pwm
add a comment |
I learning AVR programming through a book. In which there's a program to implement PWM on any pin
This is the program
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << OCIE0B);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
OCR0A = brightnessA;
OCR0B = brightnessB;
}
ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}
ISR(TIMER0_COMPB_vect) {
LED_PORT &= 0b00001111; // turn off high four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
brightnessA = i;
brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
brightnessA = i;
brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
It works fine and here's signal in simulator OCR0A & OCR0B
Then I changed code so that PWM only with OCR0A
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
OCR0A = brightnessA;
}
ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
brightnessA = i;
//brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
brightnessA = i;
//brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
It works fine too, here's the signal OCR0A
Then I changed the code this time only OCR0B
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
//TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << OCIE0B);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
//OCR0A = brightnessA;
OCR0B = brightnessB;
}
/*ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}*/
ISR(TIMER0_COMPB_vect) {
LED_PORT &= 0b00001111; // turn off high four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
//brightnessA = i;
brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
//brightnessA = i;
brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
Bit it's not working, OCR0B
Why?
avr pwm
add a comment |
I learning AVR programming through a book. In which there's a program to implement PWM on any pin
This is the program
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << OCIE0B);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
OCR0A = brightnessA;
OCR0B = brightnessB;
}
ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}
ISR(TIMER0_COMPB_vect) {
LED_PORT &= 0b00001111; // turn off high four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
brightnessA = i;
brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
brightnessA = i;
brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
It works fine and here's signal in simulator OCR0A & OCR0B
Then I changed code so that PWM only with OCR0A
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
OCR0A = brightnessA;
}
ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
brightnessA = i;
//brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
brightnessA = i;
//brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
It works fine too, here's the signal OCR0A
Then I changed the code this time only OCR0B
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
//TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << OCIE0B);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
//OCR0A = brightnessA;
OCR0B = brightnessB;
}
/*ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}*/
ISR(TIMER0_COMPB_vect) {
LED_PORT &= 0b00001111; // turn off high four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
//brightnessA = i;
brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
//brightnessA = i;
brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
Bit it's not working, OCR0B
Why?
avr pwm
I learning AVR programming through a book. In which there's a program to implement PWM on any pin
This is the program
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << OCIE0B);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
OCR0A = brightnessA;
OCR0B = brightnessB;
}
ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}
ISR(TIMER0_COMPB_vect) {
LED_PORT &= 0b00001111; // turn off high four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
brightnessA = i;
brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
brightnessA = i;
brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
It works fine and here's signal in simulator OCR0A & OCR0B
Then I changed code so that PWM only with OCR0A
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
OCR0A = brightnessA;
}
ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
brightnessA = i;
//brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
brightnessA = i;
//brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
It works fine too, here's the signal OCR0A
Then I changed the code this time only OCR0B
// Quick and dirty demo of how to get PWM on any pin with interrupts
// ------- Preamble -------- //
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "pinDefines.h"
#define DELAY 3
volatile uint8_t brightnessA;
volatile uint8_t brightnessB;
// -------- Functions --------- //
static inline void initTimer0(void) {
/* must be /64 or more for ISR timing */
TCCR0B |= (1 << CS01) | (1 << CS00);
/* both output compare interrupts */
//TIMSK0 |= (1 << OCIE0A);
TIMSK0 |= (1 << OCIE0B);
TIMSK0 |= (1 << TOIE0); /* overflow interrupt enable */
sei();
}
ISR(TIMER0_OVF_vect) {
LED_PORT = 0xFF;
//OCR0A = brightnessA;
OCR0B = brightnessB;
}
/*ISR(TIMER0_COMPA_vect) {
LED_PORT &= 0b11110000; // turn off low four LEDs
}*/
ISR(TIMER0_COMPB_vect) {
LED_PORT &= 0b00001111; // turn off high four LEDs
}
int main(void) {
// -------- Inits --------- //
uint8_t i;
LED_DDR = 0xff;
initTimer0();
// ------ Event loop ------ //
while (1) {
for (i = 0; i < 255; i++) {
_delay_ms(DELAY);
//brightnessA = i;
brightnessB = 255-i;
}
for (i = 254; i > 0; i--) {
_delay_ms(DELAY);
//brightnessA = i;
brightnessB = 255-i;
}
} /* End event loop */
return (0); /* This line is never reached */
}
Bit it's not working, OCR0B
Why?
avr pwm
avr pwm
asked Nov 24 '18 at 17:24
AthulAthul
254313
254313
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53460639%2favr-pwm-issue-with-ocr0b%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53460639%2favr-pwm-issue-with-ocr0b%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown