Переглянути джерело

ctrl/main.c, tiny/i2c_timer_pwm.c : Updated comments.

master
kevin.larke 4 роки тому
джерело
коміт
f24aec16e6
2 змінених файлів з 14 додано та 13 видалено
  1. 4
    5
      control/ctrl/main.c
  2. 10
    8
      control/tiny/i2c_timer_pwm.c

+ 4
- 5
control/ctrl/main.c Переглянути файл

@@ -218,11 +218,10 @@ int main (void)
218 218
           else
219 219
           {
220 220
             // TODO: handle case where there are no data bytes (only e.g. note-off)
221
-            state = kWait_for_value;
222
-            data_buf[0] = dev_reg_addr; // make 'dev_reg_addr' the first data value to write
223
-            data_buf_idx = 1;           // 
224
-            op_byte_cnt += 1;           // incr op_byte_cnt to account for 'dev_reg_addr' as first byte
225
-              
221
+            state        = kWait_for_value;
222
+            data_buf[0]  = dev_reg_addr;   // make 'dev_reg_addr' the first data value to write
223
+            data_buf_idx = 1;              // 
224
+            op_byte_cnt += 1;              // incr op_byte_cnt to account for 'dev_reg_addr' as first byte              
226 225
           }
227 226
           break;
228 227
             

+ 10
- 8
control/tiny/i2c_timer_pwm.c Переглянути файл

@@ -42,7 +42,6 @@ enum
42 42
  kSetReadAddr_Op    =  4,  // Set a read addr.   4 {<src>} {<addr>} }  src: 0=reg 1=table 2=eeprom
43 43
  kWrite_Op          =  5,  // Set write          5 {<addrfl|src> {addr}  {<value0> ... {<valueN>}}  addrFl:0x80  src: 4=reg 5=table 6=eeprom
44 44
  kSetMode_Op        =  6,  // Set the mode flags 6 {<mode>}  1=repeat 2=pwm
45
- 
46 45
  kInvalid_Op        =  7   //                                             
47 46
 };
48 47
 
@@ -93,16 +92,20 @@ volatile uint8_t ctl_regs[] =
93 92
    0,                //  0 (0-(kMax_idx-1)) Reg Read Addr   
94 93
    0,                //  1 (0-255)          Table Read Addr
95 94
    0,                //  2 (0-255)          EE Read Addr  
96
-   kReg_Rd_Addr_idx, //  3 (0-2)    Read source   
95
+   kReg_Rd_Addr_idx, //  3 (0-2)    Read source
96
+   
97 97
    0,                //  4 (0-(kMax_idx-1)) Reg Write Addr   
98 98
    0,                //  5 (0-255)          Table Write Addr
99
-   0,                //  6 (0-255)          EE Write Addr     
99
+   0,                //  6 (0-255)          EE Write Addr
100 100
    kReg_Wr_Addr_idx, //  7 (0-2)    Write source
101
+   
101 102
  245,                //  8 (0-255)  Timer 0 Coarse Value 
102 103
   25,                //  9 (0-255)  Timer 0 Fine Value
103 104
    4,                // 10 (1-5)    4=16us per tick
105
+   
104 106
  127,                // 11 (0-255)  Pwm Duty cycle
105
- 254,                // 12 (0-255)  Pwm Frequency  (123 hz)
107
+ 254,                // 12 (0-255)  Pwm Frequency  (123 Hz)
108
+   
106 109
    kMode_Repeat_Fl,  // 13 mode flags  1=Repeat 2=PWM
107 110
    0,                // 14 state flags 1=attk   2=hold
108 111
    0,                // 15 (0-255)  Error bit field
@@ -295,11 +298,10 @@ ISR(TIMER0_COMPA_vect)
295 298
 
296 299
 void tmr0_init()
297 300
 {
298
-  TIMSK  &= ~_BV(OCIE0A);    // Disable interrupt TIMER1_OVF
299
-  TCCR0A  |=  0x02;           // CTC mode
301
+  TIMSK  &= ~_BV(OCIE0A);                 // Disable interrupt TIMER1_OVF
302
+  TCCR0A  |=  0x02;                       // CTC mode
300 303
   TCCR0B  |= ctl_regs[kTmr_Prescale_idx]; // set the prescaler
301
-
302
-  GTCCR   |= _BV(PSR0);      // Set the pre-scaler to the selected value
304
+  GTCCR   |= _BV(PSR0);                   // Set the pre-scaler to the selected value
303 305
 }
304 306
 
305 307
 

Завантаження…
Відмінити
Зберегти