comparison Scan/MBC-55X/scan_loop.h @ 450:48ede6680396 master

Updating MBC-55X scan module
author Jacob Alexander <haata@kiibohd.com>
date Sun, 12 Jun 2016 15:53:25 -0700
parents 66eccdd9ced5
children
comparison
equal deleted inserted replaced
449:45feb80a2ad1 450:48ede6680396
1 /* Copyright (C) 2013-2015 by Jacob Alexander 1 /* Copyright (C) 2013-2016 by Jacob Alexander
2 * 2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy 3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to deal 4 * of this software and associated documentation files (the "Software"), to deal
5 * in the Software without restriction, including without limitation the rights 5 * in the Software without restriction, including without limitation the rights
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
46 46
47 47
48 // ----- Functions ----- 48 // ----- Functions -----
49 49
50 // Functions used by main.c 50 // Functions used by main.c
51 void Scan_setup( void ); 51 void Scan_setup();
52 uint8_t Scan_loop( void ); 52 uint8_t Scan_loop();
53 53
54 54
55 // Functions available to macro.c 55 // Functions available to macro.c
56 uint8_t Scan_sendData( uint8_t dataPayload ); 56 uint8_t Scan_sendData( uint8_t dataPayload );
57 57
58 void Scan_finishedWithBuffer( uint8_t sentKeys ); 58 void Scan_finishedWithMacro( uint8_t sentKeys );
59 void Scan_finishedWithUSBBuffer( uint8_t sentKeys ); 59 void Scan_finishedWithOutput( uint8_t sentKeys );
60 void Scan_lockKeyboard( void ); 60 void Scan_lockKeyboard( void );
61 void Scan_unlockKeyboard( void ); 61 void Scan_unlockKeyboard( void );
62 void Scan_resetKeyboard( void ); 62 void Scan_resetKeyboard( void );
63 void Scan_currentChange( unsigned int current );
63 64