Browse Source

makeWord is inconsistently defined

Revise definition to be consistent with other usage of byte
teensy4-core
Fernando Trias 8 years ago
parent
commit
c083b394e4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      teensy3/WProgram.h

+ 1
- 1
teensy3/WProgram.h View File

#include "IntervalTimer.h" #include "IntervalTimer.h"


uint16_t makeWord(uint16_t w); uint16_t makeWord(uint16_t w);
uint16_t makeWord(byte h, byte l);
unsigned int makeWord(unsigned char h, unsigned char l);


#define word(...) makeWord(__VA_ARGS__) #define word(...) makeWord(__VA_ARGS__)



Loading…
Cancel
Save