comparison testavr.c @ 52:3217e93b28a3

Missed variable declaration changes from previous commit.
author darius@Inchoate
date Wed, 29 Oct 2008 16:10:20 +1030
parents cb184206344d
children 98b5a43fc748
comparison
equal deleted inserted replaced
51:cb184206344d 52:3217e93b28a3
158 } 158 }
159 } 159 }
160 160
161 void 161 void
162 process_cmd(void) { 162 process_cmd(void) {
163 uint8_t ROM[8]; 163 uint8_t ROM[8], crc, buf[9], temp;
164 int8_t i, arg; 164 int8_t i, arg;
165 uint8_t crc, buf[9]; 165 int16_t t;
166 int8_t temp;
167 uint16_t tfrac;
168 166
169 /* User just pressed enter */ 167 /* User just pressed enter */
170 if (cmd.len == 0) 168 if (cmd.len == 0)
171 return; 169 return;
172 170