X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=main.c;h=3b48941dfca0ed1e647378b51b8998fa1138362c;hb=0013d7a4f31d35ad054369037e20b683085c6116;hp=537e0adf4d6e459db4256a0f49c502cbb3f8ab01;hpb=05c20112e9a273738ffec2fa66bd2809ca888611;p=kiibohd-controller.git diff --git a/main.c b/main.c index 537e0ad..3b48941 100644 --- a/main.c +++ b/main.c @@ -1,15 +1,15 @@ -/* Copyright (C) 2011 by Jacob Alexander - * +/* Copyright (C) 2011-2014 by Jacob Alexander + * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: - * + * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. - * + * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -21,123 +21,55 @@ // ----- Includes ----- -// AVR Includes -#include -#include +// Compiler Includes +#include // Project Includes #include #include -#include +#include +#include #include #include -// ----- Defines ----- - -// Verified Keypress Defines -#define USB_TRANSFER_DIVIDER 10 // 1024 == 1 Send of keypresses per second, 1 == 1 Send of keypresses per ~1 millisecond - - - -// ----- Macros ----- -#define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n)) - - - -// ----- Variables ----- - -// Timer Interrupt for flagging a send of the sampled key detection data to the USB host -uint16_t sendKeypressCounter = 0; - -// Flag generated by the timer interrupt -volatile uint8_t sendKeypresses = 0; - - - // ----- Functions ----- -// Initial Pin Setup, make sure they are sane -inline void pinSetup(void) -{ - // For each pin, 0=input, 1=output - DDRA = 0x00; - DDRB = 0x00; - DDRC = 0x00; - DDRD = 0x00; - DDRE = 0x00; - DDRF = 0x00; - - - // Setting pins to either high or pull-up resistor - PORTA = 0x00; - PORTB = 0x00; - PORTC = 0x00; - PORTD = 0x00; - PORTE = 0x00; - PORTF = 0x00; -} - -int main(void) +int main() { - // Setup with 16 MHz clock - CPU_PRESCALE( 0 ); + // AVR - Teensy Set Clock speed to 16 MHz +#if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) + CLKPR = 0x80; + CLKPR = 0x00; +#endif - // Configuring Pins - pinSetup(); - init_errorLED(); + // Enable CLI + CLI_init(); - // Setup USB Module - usb_setup(); - - // Setup ISR Timer for flagging a kepress send to USB - // Set to 256 * 1024 (8 bit timer with Clock/1024 prescalar) timer - TCCR0A = 0x00; - TCCR0B = 0x03; - TIMSK0 = (1 << TOIE0); + // Setup Modules + Output_setup(); + Macro_setup(); + Scan_setup(); // Main Detection Loop - uint8_t ledTimer = 15; // Enable LED for a short time while ( 1 ) { - while ( 1 ) - { - // Acquire Key Indices - scan_loop(); - - // Send keypresses over USB if the ISR has signalled that it's time - if ( !sendKeypresses ) - continue; - - // Run Macros over Key Indices and convert to USB Keys - process_macros(); + // Process CLI + CLI_process(); - // Send USB Data - usb_send(); + // Acquire Key Indices + // Loop continuously until scan_loop returns 0 + cli(); + while ( Scan_loop() ); + sei(); - // Clear sendKeypresses Flag - sendKeypresses = 0; + // Run Macros over Key Indices and convert to USB Keys + Macro_process(); - // Indicate Error, if valid - errorLED( ledTimer ); - } - - // Loop should never get here (indicate error) - ledTimer = 255; - - // HID Debug Error message - erro_print("Detection loop error, this is very bad...bug report!"); - } -} - -ISR( TIMER0_OVF_vect ) -{ - sendKeypressCounter++; - if ( sendKeypressCounter > USB_TRANSFER_DIVIDER ) { - sendKeypressCounter = 0; - sendKeypresses = 1; + // Sends USB data only if changed + Output_send(); } }