comparison Scan/CK3/scan_loop.c @ 425:971e88d4420a

Updated CK3 with Scan_currentChange (copy from MD1).
author CryHam <cryham@gmail.com>
date Tue, 01 Mar 2016 21:00:23 +0100
parents 293154e4aafe
children
comparison
equal deleted inserted replaced
424:0d1cc6ec4af7 425:971e88d4420a
173 Output_usbCodeSend_capability( state, stateType, &key ); 173 Output_usbCodeSend_capability( state, stateType, &key );
174 } 174 }
175 } 175 }
176 176
177 177
178 // Signal from the Output Module that the available current has changed
179 // current - mA
180 void Scan_currentChange( unsigned int current )
181 {
182 // Indicate to all submodules current change
183 Matrix_currentChange( current );
184 }
185
186
178 187
179 // ----- CLI Command Functions ----- 188 // ----- CLI Command Functions -----
180 189
181 // XXX Just an example command showing how to parse arguments (more complex than generally needed) 190 // XXX Just an example command showing how to parse arguments (more complex than generally needed)
182 void cliFunc_echo( char* args ) 191 void cliFunc_echo( char* args )