File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -604,7 +604,7 @@ INT32 hci_unsol_event_handler(CHAR *event_hdr)
604
604
{
605
605
//data[0] represents the socket id, for which FIN was received by remote.
606
606
//Upon receiving this event, the user can close the socket, or else the
607
- //socket will be closded after inacvitity timeout (by default 60 seconds)
607
+ //socket will be closed after inacvitity timeout (by default 60 seconds)
608
608
tSLInformation .sWlanCB (event_type , data , 1 );
609
609
}
610
610
}
Original file line number Diff line number Diff line change 18
18
#define FSL_XIP_BOARD_DRIVER_VERSION (MAKE_VERSION(2, 0, 0))
19
19
/*@}*/
20
20
21
- /* FLEXSPI memory config block related defintions */
21
+ /* FLEXSPI memory config block related definitions */
22
22
#define FLEXSPI_CFG_BLK_TAG (0x42464346UL) // ascii "FCFB" Big Endian
23
23
#define FLEXSPI_CFG_BLK_VERSION (0x56010400UL) // V1.4.0
24
24
#define FLEXSPI_CFG_BLK_SIZE (512)
25
25
26
26
/* FLEXSPI Feature related definitions */
27
27
#define FLEXSPI_FEATURE_HAS_PARALLEL_MODE 1
28
28
29
- /* Lookup table related defintions */
29
+ /* Lookup table related definitions */
30
30
#define CMD_INDEX_READ 0
31
31
#define CMD_INDEX_READSTATUS 1
32
32
#define CMD_INDEX_WRITEENABLE 2
Original file line number Diff line number Diff line change 50
50
/// val = adc.read_core_vbat() # read MCU VBAT
51
51
/// val = adc.read_core_vref() # read MCU VREF
52
52
53
- /* ADC defintions */
53
+ /* ADC definitions */
54
54
#define ADCx (ADC1)
55
55
#define PIN_ADC_MASK PIN_ADC1
56
56
#define pin_adc_table pin_adc1
171
171
#define EOC_TIMEOUT (10)
172
172
173
173
/* Core temperature sensor definitions */
174
- #define CORE_TEMP_V25 (943) /* (0.76v/3.3v)*(2^ADC resoultion ) */
175
- #define CORE_TEMP_AVG_SLOPE (3) /* (2.5mv/3.3v)*(2^ADC resoultion ) */
174
+ #define CORE_TEMP_V25 (943) /* (0.76v/3.3v)*(2^ADC resolution ) */
175
+ #define CORE_TEMP_AVG_SLOPE (3) /* (2.5mv/3.3v)*(2^ADC resolution ) */
176
176
177
177
// scale and calibration values for VBAT and VREF
178
178
#define ADC_SCALE (ADC_SCALE_V / ((1 << ADC_CAL_BITS) - 1))
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ void portb_isr(void)
181
181
182
182
void portc_isr (void )
183
183
{
184
- // TODO: these are inefficent . Use CLZ somehow....
184
+ // TODO: these are inefficient . Use CLZ somehow....
185
185
uint32_t isfr = PORTC_ISFR ;
186
186
PORTC_ISFR = isfr ;
187
187
if ((isfr & CORE_PIN9_BITMASK ) && intFunc [9 ]) intFunc [9 ]();
You can’t perform that action at this time.
0 commit comments