2014-04-06 18:49:27 +00:00
/* Copyright (C) 2011,2014 by Jacob Alexander
*
2011-12-05 03:55:32 +00:00
* 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 :
2014-04-06 18:49:27 +00:00
*
2011-12-05 03:55:32 +00:00
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
2014-04-06 18:49:27 +00:00
*
2011-12-05 03:55:32 +00:00
* 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
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
* LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE .
*/
// ----- Includes -----
2013-01-26 20:05:28 +00:00
// Compiler Includes
# include <Lib/ScanLib.h>
2011-12-05 03:55:32 +00:00
// Project Includes
# include <led.h>
# include <print.h>
// Local Includes
# include "scan_loop.h"
// ----- Defines -----
// Pinout Defines
2011-12-20 01:48:47 +00:00
# define SPKR_PORT PORTD
# define SPKR_DDR DDRD
# define SPKR_POS 1
# define POWR_PORT PORTC
# define POWR_DDR DDRC
# define POWR_POS 7
2011-12-05 03:55:32 +00:00
// ----- Macros -----
// ----- Variables -----
// Buffer used to inform the macro processing module which keys have been detected as pressed
volatile uint8_t KeyIndex_Buffer [ KEYBOARD_BUFFER ] ;
volatile uint8_t KeyIndex_BufferUsed ;
// ----- Functions -----
// Setup
2014-04-06 18:49:27 +00:00
inline void Scan_setup ( )
2011-12-05 03:55:32 +00:00
{
// Setup the the USART interface for keyboard data input
2014-04-06 18:49:27 +00:00
2011-12-05 03:55:32 +00:00
// Setup baud rate
// 16 MHz / ( 16 * Baud ) = UBRR
// Baud <- 0.10450 ms per bit, thus 1000 / 0.10450 = 9569.4
// Thus UBRR = 104.50
// To deal with the 0.5, setting to double speed, which means UBRR = 209
uint16_t baud = 209 ; // Max setting of 4095
UBRR1H = ( uint8_t ) ( baud > > 8 ) ;
UBRR1L = ( uint8_t ) baud ;
// Enable Double Read Speed
UCSR1A = 0x02 ;
// Enable the receiver, transitter, and RX Complete Interrupt
UCSR1B = 0x98 ;
// Set frame format: 8 data, no stop bits or parity
// Asynchrounous USART mode
UCSR1C = 0x06 ;
2011-12-20 01:48:47 +00:00
// Set Speaker Pin to Pull-Up gives a low-volume click (XXX no other setting does, why?)
SPKR_DDR & = ~ ( 1 < < SPKR_POS ) ;
SPKR_PORT | = ( 1 < < SPKR_POS ) ;
// Set Power Pin (I've traced this back to the "Power On" Switch, but I don't really know what it's for)
// Configured as a Pull-up Input - This pin "can" be read as well, it will go to GND when the "Power On" switch is pressed, and will read ~5V otherwise
// XXX Currently not used by the controller
POWR_DDR & = ~ ( 1 < < POWR_POS ) ;
2015-03-09 01:40:01 +00:00
POWR_PORT | = ( 1 < < POWR_POS ) ;
2011-12-20 01:48:47 +00:00
2011-12-05 03:55:32 +00:00
// Reset the keyboard before scanning, we might be in a wierd state
scan_resetKeyboard ( ) ;
}
// Main Detection Loop
// Not needed for the Sony NEWS, this is just a busy loop
2014-04-06 18:49:27 +00:00
inline uint8_t Scan_loop ( )
2011-12-05 03:55:32 +00:00
{
return 0 ;
}
void processKeyValue ( uint8_t keyValue )
{
// Detect release condition
uint8_t release = keyValue & 0x80 ;
// Finalize output buffer
// Mask 8th bit
keyValue & = 0x7F ;
// Key Release
if ( release )
{
// Check for the released key, and shift the other keys lower on the buffer
uint8_t c ;
for ( c = 0 ; c < KeyIndex_BufferUsed ; c + + )
{
// Key to release found
if ( KeyIndex_Buffer [ c ] = = keyValue )
{
// Shift keys from c position
for ( uint8_t k = c ; k < KeyIndex_BufferUsed - 1 ; k + + )
KeyIndex_Buffer [ k ] = KeyIndex_Buffer [ k + 1 ] ;
// Decrement Buffer
KeyIndex_BufferUsed - - ;
break ;
}
}
// Error case (no key to release)
if ( c = = KeyIndex_BufferUsed + 1 )
{
errorLED ( 1 ) ;
char tmpStr [ 6 ] ;
hexToStr ( keyValue , tmpStr ) ;
erro_dPrint ( " Could not find key to release: " , tmpStr ) ;
}
}
2011-12-20 01:48:47 +00:00
// Press or Repeated Key
2011-12-05 03:55:32 +00:00
else
{
// Make sure the key isn't already in the buffer
for ( uint8_t c = 0 ; c < KeyIndex_BufferUsed + 1 ; c + + )
{
// Key isn't in the buffer yet
if ( c = = KeyIndex_BufferUsed )
{
2014-04-06 18:49:27 +00:00
Macro_bufferAdd ( keyValue ) ;
2011-12-05 03:55:32 +00:00
break ;
}
// Key already in the buffer
if ( KeyIndex_Buffer [ c ] = = keyValue )
break ;
}
}
}
// USART Receive Buffer Full Interrupt
ISR ( USART1_RX_vect )
{
cli ( ) ; // Disable Interrupts
uint8_t keyValue = 0x00 ;
// One scancode at a time (fastest interval ~3.95 ms - recorded, should still be ok for interrupt polling)
// Read the raw packet from the USART
keyValue = UDR1 ;
// Debug
char tmpStr [ 6 ] ;
hexToStr ( keyValue , tmpStr ) ;
dPrintStrs ( tmpStr , " " ) ;
// Process the scancode
2011-12-07 07:49:56 +00:00
if ( keyValue ! = 0x00 )
2011-12-20 01:48:47 +00:00
processKeyValue ( keyValue ) ;
2011-12-05 03:55:32 +00:00
sei ( ) ; // Re-enable Interrupts
}
2011-12-20 01:48:47 +00:00
// Send data to keyboard
2014-04-06 18:49:27 +00:00
uint8_t Scan_sendData ( uint8_t dataPayload )
2011-12-05 03:55:32 +00:00
{
2011-12-07 07:49:56 +00:00
// Debug
char tmpStr [ 6 ] ;
hexToStr ( dataPayload , tmpStr ) ;
info_dPrint ( tmpStr , " " ) ;
2011-12-05 03:55:32 +00:00
UDR1 = dataPayload ;
return 0 ;
}
// Signal KeyIndex_Buffer that it has been properly read
// Not needed as a signal is sent to remove key-presses
2014-04-06 18:49:27 +00:00
void Scan_finishedWithBuffer ( uint8_t sentKeys )
2011-12-05 03:55:32 +00:00
{
return ;
}
// Reset/Hold keyboard TODO
// Warning! This will cause the keyboard to not send any data, so you can't disable with a keypress
2014-04-06 18:49:27 +00:00
void Scan_lockKeyboard ( void )
2011-12-05 03:55:32 +00:00
{
}
2014-04-06 18:49:27 +00:00
void Scan_unlockKeyboard ( void )
2011-12-05 03:55:32 +00:00
{
}
2011-12-20 01:48:47 +00:00
// Reset Keyboard
2014-04-06 18:49:27 +00:00
void Scan_resetKeyboard ( void )
2011-12-05 03:55:32 +00:00
{
// Empty buffer, now that keyboard has been reset
KeyIndex_BufferUsed = 0 ;
}
2014-04-06 18:49:27 +00:00
void Scan_finishedWithUSBBuffer ( uint8_t sentKeys )
2011-12-20 01:48:47 +00:00
{
return ;
}