Tandy 1000 Converter, basicly works, except for packet mismatches
- Caused by too much processing in the converter... - Easy to fix if I remove the macro engine...
This commit is contained in:
parent
05c20112e9
commit
46916defa5
12 changed files with 578 additions and 33 deletions
|
@ -55,7 +55,7 @@ volatile uint8_t USBKeys_LEDs = 0;
|
|||
// ----- Functions -----
|
||||
|
||||
// USB Module Setup
|
||||
void usb_setup(void)
|
||||
inline void usb_setup(void)
|
||||
{
|
||||
// Initialize the USB, and then wait for the host to set configuration.
|
||||
// If the Teensy is powered without a PC connected to the USB port,
|
||||
|
@ -70,7 +70,7 @@ void usb_setup(void)
|
|||
|
||||
|
||||
// USB Data Send
|
||||
void usb_send(void)
|
||||
inline void usb_send(void)
|
||||
{
|
||||
// TODO undo potentially old keys
|
||||
for ( uint8_t c = USBKeys_Sent; c < USBKeys_MaxSize; c++ )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue