SimpleFOClibrary  2.1
atmega328_mcu.cpp
Go to the documentation of this file.
1 #include "../hardware_api.h"
2 
3 #if defined(__AVR_ATmega328P__) || defined(__AVR_ATmega168__) || defined(__AVR_ATmega328PB__)
4 
5 // set pwm frequency to 32KHz
6 void _pinHighFrequency(const int pin){
7  // High PWM frequency
8  // https://sites.google.com/site/qeewiki/books/avr-guide/timers-on-the-atmega328
9  if (pin == 5 || pin == 6 ) {
10  TCCR0A = ((TCCR0A & 0b11111100) | 0x01); // configure the pwm phase-corrected mode
11  TCCR0B = ((TCCR0B & 0b11110000) | 0x01); // set prescaler to 1
12  }
13  if (pin == 9 || pin == 10 )
14  TCCR1B = ((TCCR1B & 0b11111000) | 0x01); // set prescaler to 1
15  if (pin == 3 || pin == 11)
16  TCCR2B = ((TCCR2B & 0b11111000) | 0x01);// set prescaler to 1
17 
18 }
19 
20 
21 // function setting the high pwm frequency to the supplied pins
22 // - Stepper motor - 2PWM setting
23 // - hardware speciffic
24 // supports Arudino/ATmega328
25 void _configure2PWM(long pwm_frequency,const int pinA, const int pinB) {
26  // High PWM frequency
27  // - always max 32kHz
28  _pinHighFrequency(pinA);
29  _pinHighFrequency(pinB);
30 }
31 
32 // function setting the high pwm frequency to the supplied pins
33 // - BLDC motor - 3PWM setting
34 // - hardware speciffic
35 // supports Arudino/ATmega328
36 void _configure3PWM(long pwm_frequency,const int pinA, const int pinB, const int pinC) {
37  // High PWM frequency
38  // - always max 32kHz
39  _pinHighFrequency(pinA);
40  _pinHighFrequency(pinB);
41  _pinHighFrequency(pinC);
42 }
43 
44 // function setting the pwm duty cycle to the hardware
45 // - Stepper motor - 2PWM setting
46 // - hardware speciffic
47 void _writeDutyCycle2PWM(float dc_a, float dc_b, int pinA, int pinB){
48  // transform duty cycle from [0,1] to [0,255]
49  analogWrite(pinA, 255.0*dc_a);
50  analogWrite(pinB, 255.0*dc_b);
51 }
52 
53 // function setting the pwm duty cycle to the hardware
54 // - BLDC motor - 3PWM setting
55 // - hardware speciffic
56 void _writeDutyCycle3PWM(float dc_a, float dc_b, float dc_c, int pinA, int pinB, int pinC){
57  // transform duty cycle from [0,1] to [0,255]
58  analogWrite(pinA, 255.0*dc_a);
59  analogWrite(pinB, 255.0*dc_b);
60  analogWrite(pinC, 255.0*dc_c);
61 }
62 
63 // function setting the high pwm frequency to the supplied pins
64 // - Stepper motor - 4PWM setting
65 // - hardware speciffic
66 // supports Arudino/ATmega328
67 void _configure4PWM(long pwm_frequency,const int pin1A, const int pin1B, const int pin2A, const int pin2B) {
68  // High PWM frequency
69  // - always max 32kHz
70  _pinHighFrequency(pin1A);
71  _pinHighFrequency(pin1B);
72  _pinHighFrequency(pin2A);
73  _pinHighFrequency(pin2B);
74 }
75 
76 // function setting the pwm duty cycle to the hardware
77 // - Stepper motor - 4PWM setting
78 // - hardware speciffic
79 void _writeDutyCycle4PWM(float dc_1a, float dc_1b, float dc_2a, float dc_2b, int pin1A, int pin1B, int pin2A, int pin2B){
80  // transform duty cycle from [0,1] to [0,255]
81  analogWrite(pin1A, 255.0*dc_1a);
82  analogWrite(pin1B, 255.0*dc_1b);
83  analogWrite(pin2A, 255.0*dc_2a);
84  analogWrite(pin2B, 255.0*dc_2b);
85 }
86 
87 
88 // function configuring pair of high-low side pwm channels, 32khz frequency and center aligned pwm
89 int _configureComplementaryPair(int pinH, int pinL) {
90  if( (pinH == 5 && pinL == 6 ) || (pinH == 6 && pinL == 5 ) ){
91  // configure the pwm phase-corrected mode
92  TCCR0A = ((TCCR0A & 0b11111100) | 0x01);
93  // configure complementary pwm on low side
94  if(pinH == 6 ) TCCR0A = 0b10110000 | (TCCR0A & 0b00001111) ;
95  else TCCR0A = 0b11100000 | (TCCR0A & 0b00001111) ;
96  // set prescaler to 1 - 32kHz freq
97  TCCR0B = ((TCCR0B & 0b11110000) | 0x01);
98  }else if( (pinH == 9 && pinL == 10 ) || (pinH == 10 && pinL == 9 ) ){
99  // set prescaler to 1 - 32kHz freq
100  TCCR1B = ((TCCR1B & 0b11111000) | 0x01);
101  // configure complementary pwm on low side
102  if(pinH == 9 ) TCCR1A = 0b10110000 | (TCCR1A & 0b00001111) ;
103  else TCCR1A = 0b11100000 | (TCCR1A & 0b00001111) ;
104  }else if((pinH == 3 && pinL == 11 ) || (pinH == 11 && pinL == 3 ) ){
105  // set prescaler to 1 - 32kHz freq
106  TCCR2B = ((TCCR2B & 0b11111000) | 0x01);
107  // configure complementary pwm on low side
108  if(pinH == 11 ) TCCR2A = 0b10110000 | (TCCR2A & 0b00001111) ;
109  else TCCR2A = 0b11100000 | (TCCR2A & 0b00001111) ;
110  }else{
111  return -1;
112  }
113  return 0;
114 }
115 
116 // Configuring PWM frequency, resolution and alignment
117 // - BLDC driver - 6PWM setting
118 // - hardware specific
119 // supports Arudino/ATmega328
120 int _configure6PWM(long pwm_frequency, float dead_zone, const int pinA_h, const int pinA_l, const int pinB_h, const int pinB_l, const int pinC_h, const int pinC_l) {
121  // High PWM frequency
122  // - always max 32kHz
123  int ret_flag = 0;
124  ret_flag += _configureComplementaryPair(pinA_h, pinA_l);
125  ret_flag += _configureComplementaryPair(pinB_h, pinB_l);
126  ret_flag += _configureComplementaryPair(pinC_h, pinC_l);
127  return ret_flag; // returns -1 if not well configured
128 }
129 
130 // function setting the
131 void _setPwmPair(int pinH, int pinL, float val, int dead_time)
132 {
133  int pwm_h = _constrain(val-dead_time/2,0,255);
134  int pwm_l = _constrain(val+dead_time/2,0,255);
135 
136  analogWrite(pinH, pwm_h);
137  if(pwm_l == 255 || pwm_l == 0)
138  digitalWrite(pinL, pwm_l ? LOW : HIGH);
139  else
140  analogWrite(pinL, pwm_l);
141 }
142 
143 // Function setting the duty cycle to the pwm pin (ex. analogWrite())
144 // - BLDC driver - 6PWM setting
145 // - hardware specific
146 // supports Arudino/ATmega328
147 void _writeDutyCycle6PWM(float dc_a, float dc_b, float dc_c, float dead_zone, int pinA_h, int pinA_l, int pinB_h, int pinB_l, int pinC_h, int pinC_l){
148  _setPwmPair(pinA_h, pinA_l, dc_a*255.0, dead_zone*255.0);
149  _setPwmPair(pinB_h, pinB_l, dc_b*255.0, dead_zone*255.0);
150  _setPwmPair(pinC_h, pinC_l, dc_c*255.0, dead_zone*255.0);
151 }
152 
153 #endif
_configure3PWM
void _configure3PWM(long pwm_frequency, const int pinA, const int pinB, const int pinC)
Definition: drivers/hardware_specific/generic_mcu.cpp:31
_configure4PWM
void _configure4PWM(long pwm_frequency, const int pin1A, const int pin1B, const int pin2A, const int pin2B)
Definition: drivers/hardware_specific/generic_mcu.cpp:40
_constrain
#define _constrain(amt, low, high)
Definition: foc_utils.h:9
_writeDutyCycle3PWM
void _writeDutyCycle3PWM(float dc_a, float dc_b, float dc_c, int pinA, int pinB, int pinC)
Definition: drivers/hardware_specific/generic_mcu.cpp:64
_writeDutyCycle2PWM
void _writeDutyCycle2PWM(float dc_a, float dc_b, int pinA, int pinB)
Definition: drivers/hardware_specific/generic_mcu.cpp:55
_writeDutyCycle4PWM
void _writeDutyCycle4PWM(float dc_1a, float dc_1b, float dc_2a, float dc_2b, int pin1A, int pin1B, int pin2A, int pin2B)
Definition: drivers/hardware_specific/generic_mcu.cpp:74
_writeDutyCycle6PWM
void _writeDutyCycle6PWM(float dc_a, float dc_b, float dc_c, float dead_zone, int pinA_h, int pinA_l, int pinB_h, int pinB_l, int pinC_h, int pinC_l)
Definition: drivers/hardware_specific/generic_mcu.cpp:86
_configure6PWM
int _configure6PWM(long pwm_frequency, float dead_zone, const int pinA_h, const int pinA_l, const int pinB_h, const int pinB_l, const int pinC_h, const int pinC_l)
Definition: drivers/hardware_specific/generic_mcu.cpp:47
_configure2PWM
void _configure2PWM(long pwm_frequency, const int pinA, const int pinB)
Definition: drivers/hardware_specific/generic_mcu.cpp:23