More renaming for the USB to Output Module renaming

This commit is contained in:
Jacob Alexander 2014-01-19 16:54:58 -08:00
parent 59f13f8f4f
commit 85dd7f5c52
8 changed files with 13 additions and 11 deletions

View file

@ -8,7 +8,7 @@
#include <stdint.h>
#include <stddef.h>
#include "usb_com.h"
#include "output_com.h"
#define ENDPOINT_UNUSED 0x00
#define ENDPOINT_TRANSIMIT_ONLY 0x15

View file

@ -2,7 +2,7 @@
#define USBkeyboard_h_
#include <inttypes.h>
#include "usb_com.h"
#include "output_com.h"
uint8_t usb_keyboard_send(void);

View file

@ -2,7 +2,7 @@
#define usb_serial_h__
#include <stdint.h>
#include "usb_com.h"
#include "output_com.h"
void usb_init(void); // initialize everything
uint8_t usb_configured(void); // is the USB port configured

View file

@ -73,7 +73,7 @@ volatile uint8_t USBKeys_LEDs = 0;
// ----- Functions -----
// USB Module Setup
inline void usb_setup(void)
inline void output_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,

View file

@ -58,8 +58,7 @@ extern uint8_t USBKeys_Idle_Count;
// ----- Functions -----
void usb_setup(void);
void usb_send(void);
void output_setup(void);
#endif