Browse Source

Fix whitespace pt2

Forgot to pull some files. Fixed those up too.
bringup
Rowan Decker 9 years ago
parent
commit
68f357dceb
3 changed files with 10 additions and 10 deletions
  1. 1
    1
      Output/pjrcUSB/output_com.c
  2. 8
    8
      Output/usbMuxUart/output_com.c
  3. 1
    1
      Output/usbMuxUart/setup.cmake

+ 1
- 1
Output/pjrcUSB/output_com.c View File

// Debug control variable for Output modules // Debug control variable for Output modules
// 0 - Debug disabled (default) // 0 - Debug disabled (default)
// 1 - Debug enabled // 1 - Debug enabled
uint8_t Output_DebugMode = 0;
uint8_t Output_DebugMode = 0;







+ 8
- 8
Output/usbMuxUart/output_com.c View File



// Used to build a bitmap lookup table from a byte addressable array // Used to build a bitmap lookup table from a byte addressable array
#define byteLookup( byte ) case (( byte ) * ( 8 )): bytePosition = byte; byteShift = 0; break; \ #define byteLookup( byte ) case (( byte ) * ( 8 )): bytePosition = byte; byteShift = 0; break; \
case (( byte ) * ( 8 ) + ( 1 )): bytePosition = byte; byteShift = 1; break; \
case (( byte ) * ( 8 ) + ( 2 )): bytePosition = byte; byteShift = 2; break; \
case (( byte ) * ( 8 ) + ( 3 )): bytePosition = byte; byteShift = 3; break; \
case (( byte ) * ( 8 ) + ( 4 )): bytePosition = byte; byteShift = 4; break; \
case (( byte ) * ( 8 ) + ( 5 )): bytePosition = byte; byteShift = 5; break; \
case (( byte ) * ( 8 ) + ( 6 )): bytePosition = byte; byteShift = 6; break; \
case (( byte ) * ( 8 ) + ( 7 )): bytePosition = byte; byteShift = 7; break
case (( byte ) * ( 8 ) + ( 1 )): bytePosition = byte; byteShift = 1; break; \
case (( byte ) * ( 8 ) + ( 2 )): bytePosition = byte; byteShift = 2; break; \
case (( byte ) * ( 8 ) + ( 3 )): bytePosition = byte; byteShift = 3; break; \
case (( byte ) * ( 8 ) + ( 4 )): bytePosition = byte; byteShift = 4; break; \
case (( byte ) * ( 8 ) + ( 5 )): bytePosition = byte; byteShift = 5; break; \
case (( byte ) * ( 8 ) + ( 6 )): bytePosition = byte; byteShift = 6; break; \
case (( byte ) * ( 8 ) + ( 7 )): bytePosition = byte; byteShift = 7; break






// Debug control variable for Output modules // Debug control variable for Output modules
// 0 - Debug disabled (default) // 0 - Debug disabled (default)
// 1 - Debug enabled // 1 - Debug enabled
uint8_t Output_DebugMode = 0;
uint8_t Output_DebugMode = 0;







+ 1
- 1
Output/usbMuxUart/setup.cmake View File

# #
set( ModuleCompatibility set( ModuleCompatibility
arm arm
# avr # TODO
# avr # TODO
) )