mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-07-19 00:48:09 -07:00
Fix spelling across some project files (#3128)
* codespell across project Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
@@ -337,7 +337,7 @@ ReturnCode rfalAnalogConfigListWriteRaw(const uint8_t* configTbl, uint16_t confi
|
||||
*
|
||||
* \param[in] more: 0x00 indicates it is last Configuration ID settings;
|
||||
* 0x01 indicates more Configuration ID setting(s) are coming.
|
||||
* \param[in] *config: reference to the configuration list of current Configuraiton ID.
|
||||
* \param[in] *config: reference to the configuration list of current Configuration ID.
|
||||
*
|
||||
* \return ERR_PARAM : if Configuration ID or parameter is invalid
|
||||
* \return ERR_NOMEM : if LUT is full
|
||||
|
||||
@@ -81,7 +81,7 @@ typedef struct {
|
||||
uint8_t dec; /*!< Threshold for decrementing the output power */
|
||||
} rfalDpoEntry;
|
||||
|
||||
/*! Function pointer to methode doing the reference measurement */
|
||||
/*! Function pointer to method doing the reference measurement */
|
||||
typedef ReturnCode (*rfalDpoMeasureFunc)(uint8_t*);
|
||||
|
||||
/*
|
||||
@@ -103,7 +103,7 @@ void rfalDpoInitialize(void);
|
||||
|
||||
/*!
|
||||
*****************************************************************************
|
||||
* \brief Set the measurement methode
|
||||
* \brief Set the measurement method
|
||||
*
|
||||
* This function sets the measurement method used for reference measurement.
|
||||
* Based on the measurement the power will then be adjusted
|
||||
|
||||
@@ -186,8 +186,8 @@ extern ReturnCode iso15693VCDCode(
|
||||
* \param[in] ignoreBits : number of bits in the beginning where collisions will be ignored
|
||||
* \param[in] picopassMode : if set to true, the decoding will be according to Picopass
|
||||
*
|
||||
* \return ERR_COLLISION : collision occured, data uncorrect
|
||||
* \return ERR_CRC : CRC error, data uncorrect
|
||||
* \return ERR_COLLISION : collision occurred, data incorrect
|
||||
* \return ERR_CRC : CRC error, data incorrect
|
||||
* \return ERR_TIMEOUT : timeout waiting for data.
|
||||
* \return ERR_NONE : No error.
|
||||
*
|
||||
|
||||
@@ -616,7 +616,7 @@ bool rfalIsoDepIsAttrib(const uint8_t* buf, uint8_t bufLen);
|
||||
* \param[in] atsParam : reference to ATS parameters
|
||||
* \param[in] attribResParam : reference to ATTRIB_RES parameters
|
||||
* \param[in] buf : reference to buffer containing RATS or ATTRIB
|
||||
* \param[in] bufLen : length in bytes of the given bufffer
|
||||
* \param[in] bufLen : length in bytes of the given buffer
|
||||
* \param[in] actParam : reference to incoming reception information will be placed
|
||||
*
|
||||
*
|
||||
@@ -940,7 +940,7 @@ ReturnCode rfalIsoDepPollBHandleActivation(
|
||||
*****************************************************************************
|
||||
* \brief ISO-DEP Poller Handle S(Parameters)
|
||||
*
|
||||
* This checks if PICC supports S(PARAMETERS), retieves PICC's
|
||||
* This checks if PICC supports S(PARAMETERS), retrieves PICC's
|
||||
* capabilities and sets the Bit Rate at the highest supported by both
|
||||
* devices
|
||||
*
|
||||
|
||||
@@ -189,7 +189,7 @@ typedef struct {
|
||||
|
||||
/*! Discovery parameters */
|
||||
typedef struct {
|
||||
rfalComplianceMode compMode; /*!< Compliancy mode to be used */
|
||||
rfalComplianceMode compMode; /*!< Compliance mode to be used */
|
||||
uint16_t techs2Find; /*!< Technologies to search for */
|
||||
uint16_t totalDuration; /*!< Duration of a whole Poll + Listen cycle */
|
||||
uint8_t devLimit; /*!< Max number of devices */
|
||||
@@ -211,7 +211,7 @@ typedef struct {
|
||||
bool wakeupConfigDefault; /*!< Wake-Up mode default configuration */
|
||||
rfalWakeUpConfig wakeupConfig; /*!< Wake-Up mode configuration */
|
||||
|
||||
bool activate_after_sak; // Set device to Active mode after SAK responce
|
||||
bool activate_after_sak; // Set device to Active mode after SAK response
|
||||
} rfalNfcDiscoverParam;
|
||||
|
||||
/*! Buffer union, only one interface is used at a time */
|
||||
@@ -323,7 +323,7 @@ ReturnCode rfalNfcGetActiveDevice(rfalNfcDevice** dev);
|
||||
*
|
||||
* It selects the device to be activated.
|
||||
* It shall be called when more than one device has been identified to
|
||||
* indiacte which device shall be actived
|
||||
* indiacte which device shall be active
|
||||
*
|
||||
* \param[in] devIdx : device index to be activated
|
||||
*
|
||||
|
||||
@@ -282,7 +282,7 @@ enum {
|
||||
RFAL_NFCDEP_Bx_64_6780 = 0x08 /*!< Peer also supports 6780 */
|
||||
};
|
||||
|
||||
/*! Enumeration of NFC-DEP bit rate Dividor in PSL Digital 1.0 Table 100 */
|
||||
/*! Enumeration of NFC-DEP bit rate Divider in PSL Digital 1.0 Table 100 */
|
||||
enum {
|
||||
RFAL_NFCDEP_Dx_01_106 = RFAL_BR_106, /*!< Divisor D = 1 : bit rate = 106 */
|
||||
RFAL_NFCDEP_Dx_02_212 = RFAL_BR_212, /*!< Divisor D = 2 : bit rate = 212 */
|
||||
@@ -655,7 +655,7 @@ ReturnCode rfalNfcDepInitiatorHandleActivation(
|
||||
*
|
||||
* \param[in] buf : buffer holding Initiator's received request
|
||||
* \param[in] bufLen : size of the msg contained on the buf in Bytes
|
||||
* \param[out] nfcid3 : pointer to where the NFCID3 may be outputed,
|
||||
* \param[out] nfcid3 : pointer to where the NFCID3 may be outputted,
|
||||
* nfcid3 has NFCF_SENSF_NFCID3_LEN as length
|
||||
* Pass NULL if output parameter not desired
|
||||
*
|
||||
|
||||
@@ -332,7 +332,7 @@ ReturnCode
|
||||
* This method executes anti collision loop and select the device with higher NFCID1
|
||||
*
|
||||
* When devLimit = 0 it is configured to perform collision detection only. Once a collision
|
||||
* is detected the collision resolution is aborted immidiatly. If only one device is found
|
||||
* is detected the collision resolution is aborted immediately. If only one device is found
|
||||
* with no collisions, it will properly resolved.
|
||||
*
|
||||
* \param[in] devLimit : device limit value (CON_DEVICES_LIMIT)
|
||||
@@ -374,7 +374,7 @@ ReturnCode rfalNfcaPollerSingleCollisionResolution(
|
||||
*
|
||||
*
|
||||
* When devLimit = 0 it is configured to perform collision detection only. Once a collision
|
||||
* is detected the collision resolution is aborted immidiatly. If only one device is found
|
||||
* is detected the collision resolution is aborted immediately. If only one device is found
|
||||
* with no collisions, it will properly resolved.
|
||||
*
|
||||
*
|
||||
@@ -436,7 +436,7 @@ ReturnCode rfalNfcaPollerSleepFullCollisionResolution(
|
||||
*
|
||||
*
|
||||
* When devLimit = 0 it is configured to perform collision detection only. Once a collision
|
||||
* is detected the collision resolution is aborted immidiatly. If only one device is found
|
||||
* is detected the collision resolution is aborted immediately. If only one device is found
|
||||
* with no collisions, it will properly resolved.
|
||||
*
|
||||
*
|
||||
|
||||
@@ -81,8 +81,8 @@
|
||||
#define RFAL_NFCF_SENSF_PARAMS_TSN_POS 3U /*!< Time Slot Number position in the SENSF_REQ */
|
||||
#define RFAL_NFCF_POLL_MAXCARDS 16U /*!< Max number slots/cards 16 */
|
||||
|
||||
#define RFAL_NFCF_CMD_POS 0U /*!< Command/Responce code length */
|
||||
#define RFAL_NFCF_CMD_LEN 1U /*!< Command/Responce code length */
|
||||
#define RFAL_NFCF_CMD_POS 0U /*!< Command/Response code length */
|
||||
#define RFAL_NFCF_CMD_LEN 1U /*!< Command/Response code length */
|
||||
#define RFAL_NFCF_LENGTH_LEN 1U /*!< LEN field length */
|
||||
#define RFAL_NFCF_HEADER_LEN (RFAL_NFCF_LENGTH_LEN + RFAL_NFCF_CMD_LEN) /*!< Header length*/
|
||||
|
||||
@@ -315,8 +315,8 @@ ReturnCode rfalNfcfPollerCollisionResolution(
|
||||
*****************************************************************************
|
||||
* \brief NFC-F Poller Check/Read
|
||||
*
|
||||
* It computes a Check / Read command accoring to T3T 1.0 and JIS X6319-4 and
|
||||
* sends it to PICC. If sucessfully, the rxBuf will contain the the number of
|
||||
* It computes a Check / Read command according to T3T 1.0 and JIS X6319-4 and
|
||||
* sends it to PICC. If successfully, the rxBuf will contain the the number of
|
||||
* blocks in the first byte followed by the blocks data.
|
||||
*
|
||||
* \param[in] nfcid2 : nfcid2 of the device
|
||||
@@ -344,7 +344,7 @@ ReturnCode rfalNfcfPollerCheck(
|
||||
*****************************************************************************
|
||||
* \brief NFC-F Poller Update/Write
|
||||
*
|
||||
* It computes a Update / Write command accoring to T3T 1.0 and JIS X6319-4 and
|
||||
* It computes a Update / Write command according to T3T 1.0 and JIS X6319-4 and
|
||||
* sends it to PICC.
|
||||
*
|
||||
* \param[in] nfcid2 : nfcid2 of the device
|
||||
@@ -381,7 +381,7 @@ ReturnCode rfalNfcfPollerUpdate(
|
||||
*
|
||||
* \param[in] buf : buffer holding Initiator's received command
|
||||
* \param[in] bufLen : length of received command in bytes
|
||||
* \param[out] nfcid2 : pointer to where the NFCID2 may be outputed,
|
||||
* \param[out] nfcid2 : pointer to where the NFCID2 may be outputted,
|
||||
* nfcid2 has NFCF_SENSF_NFCID2_LEN as length
|
||||
* Pass NULL if output parameter not desired
|
||||
*
|
||||
|
||||
@@ -84,7 +84,7 @@
|
||||
#define RFAL_T4T_ISO7816_P1_SELECT_BY_FILEID \
|
||||
0x00U /*!< P1 value for Select by file identifier */
|
||||
#define RFAL_T4T_ISO7816_P2_SELECT_FIRST_OR_ONLY_OCCURENCE \
|
||||
0x00U /*!< b2b1 P2 value for First or only occurence */
|
||||
0x00U /*!< b2b1 P2 value for First or only occurrence */
|
||||
#define RFAL_T4T_ISO7816_P2_SELECT_RETURN_FCI_TEMPLATE \
|
||||
0x00U /*!< b4b3 P2 value for Return FCI template */
|
||||
#define RFAL_T4T_ISO7816_P2_SELECT_NO_RESPONSE_DATA \
|
||||
@@ -177,7 +177,7 @@ ReturnCode rfalT4TPollerComposeCAPDU(const rfalT4tCApduParam* apduParam);
|
||||
* \brief T4T Parse R-APDU
|
||||
*
|
||||
* This method parses a R-APDU according to NFC Forum T4T and ISO7816-4.
|
||||
* It will extract the data length and check if the Satus word is expected.
|
||||
* It will extract the data length and check if the Status word is expected.
|
||||
*
|
||||
* \param[in,out] apduParam : APDU parameters
|
||||
* apduParam.rApduBodyLen will contain the data length
|
||||
|
||||
Reference in New Issue
Block a user