Skip to content

Commit f80ce6a

Browse files
committed
Fix other codespell issues
1 parent 84d8f87 commit f80ce6a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/ndef_type_bluetooth.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ const uint8_t *ndefBluetoothGetEir(const ndefTypeBluetooth *bluetooth, uint8_t e
236236

237237

238238
/*****************************************************************************/
239-
/* This function copies an array, changing its endianness, useful to convert data to BLE endianess */
239+
/* This function copies an array, changing its endianness, useful to convert data to BLE endianness */
240240
static uint8_t *NDEF_BluetoothReverse(uint8_t *dst, const uint8_t *src, uint32_t length)
241241
{
242242
if ((dst == NULL) || (src == NULL)) {

src/rfal_nfca.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ typedef struct {
132132
} rfalNfcaTechDetParams;
133133

134134

135-
/*! Colission Resolution states */
135+
/*! Collision Resolution states */
136136
typedef enum {
137137
RFAL_NFCA_CR_IDLE, /*!< IDLE state */
138138
RFAL_NFCA_CR_CL, /*!< New Cascading Level state */
@@ -144,18 +144,18 @@ typedef enum {
144144
} rfalNfcaColResState;
145145

146146

147-
/*! Full Colission Resolution states */
147+
/*! Full Collision Resolution states */
148148
typedef enum {
149149
RFAL_NFCA_CR_FULL_START, /*!< Start Full Collision Resolution state */
150150
RFAL_NFCA_CR_FULL_SLPCHECK, /*!< Sleep and Check for restart state */
151151
RFAL_NFCA_CR_FULL_RESTART /*!< Restart Full Collision Resolution state */
152152
} rfalNfcaFColResState;
153153

154154

155-
/*! Colission Resolution context */
155+
/*! Collision Resolution context */
156156
typedef struct {
157157
uint8_t devLimit; /*!< Device limit to be used */
158-
rfalComplianceMode compMode; /*!< Compliancy mode to be used */
158+
rfalComplianceMode compMode; /*!< Compliance mode to be used */
159159
rfalNfcaListenDevice *nfcaDevList; /*!< Location of the device list */
160160
uint8_t *devCnt; /*!< Location of the device counter */
161161
bool collPending; /*!< Collision pending flag */

0 commit comments

Comments
 (0)