Use American English
This commit is contained in:
@ -64,7 +64,7 @@
|
||||
#define SPI_DATAMODE_3 0x0C
|
||||
|
||||
// Standard SPI functions
|
||||
/** Initialise SPI bus */
|
||||
/** Initialize SPI bus */
|
||||
void spiBegin(void);
|
||||
/** Configure SPI for specified SPI speed */
|
||||
void spiInit(uint8_t spiRate);
|
||||
|
@ -75,10 +75,10 @@
|
||||
static uint8_t eeprom_device_address = 0x50;
|
||||
|
||||
static void eeprom_init(void) {
|
||||
static bool eeprom_initialised = false;
|
||||
if (!eeprom_initialised) {
|
||||
static bool eeprom_initialized = false;
|
||||
if (!eeprom_initialized) {
|
||||
Wire.begin();
|
||||
eeprom_initialised = true;
|
||||
eeprom_initialized = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ void UnwInvalidateRegisterFile(RegData *regFile) {
|
||||
|
||||
|
||||
/**
|
||||
* Initialise the data used for unwinding.
|
||||
* Initialize the data used for unwinding.
|
||||
*/
|
||||
void UnwInitState(UnwState * const state, /**< Pointer to structure to fill. */
|
||||
const UnwindCallbacks *cb, /**< Callbacks. */
|
||||
|
@ -44,7 +44,7 @@ UnwResult UnwindStart(UnwindFrame* frame, const UnwindCallbacks *cb, void *data)
|
||||
/* We don't have unwind information tables */
|
||||
UnwState state;
|
||||
|
||||
/* Initialise the unwinding state */
|
||||
/* Initialize the unwinding state */
|
||||
UnwInitState(&state, cb, data, frame->pc, frame->sp);
|
||||
|
||||
/* Check the Thumb bit */
|
||||
|
Reference in New Issue
Block a user