comparison Scan/MatrixARM/matrix_scan.h @ 341:66eccdd9ced5

Code cleanup - Changing header file ifndef define to pragma once's - Removed duplicate output_com.h's
author Jacob Alexander <haata@kiibohd.com>
date Sun, 14 Jun 2015 13:56:56 -0700
parents 57f40871c726
children e464aaa4730f
comparison
equal deleted inserted replaced
340:e8841d3c6db5 341:66eccdd9ced5
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 * THE SOFTWARE. 19 * THE SOFTWARE.
20 */ 20 */
21 21
22 #ifndef __MATRIX_SCAN_H 22 #pragma once
23 #define __MATRIX_SCAN_H
24 23
25 // ----- Includes ----- 24 // ----- Includes -----
26 25
27 // KLL Generated Defines 26 // KLL Generated Defines
28 #include <kll_defs.h> 27 #include <kll_defs.h>
138 // ----- Functions ----- 137 // ----- Functions -----
139 138
140 void Matrix_setup(); 139 void Matrix_setup();
141 void Matrix_scan( uint16_t scanNum ); 140 void Matrix_scan( uint16_t scanNum );
142 141
143
144 #endif // __MATRIX_SCAN_H
145