Skip to content

Commit 061339f

Browse files
committed
fixup! winc1500: typo correction
1 parent afb9ea5 commit 061339f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

drivers/include/winc1500.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* ## Introduction
1616
* WINC1500 (or ATWINC1500) is a Wi-Fi chipset from Atmel. This chipset is
1717
* designed to be used with microcontrollers(MCUs). This is offered as Wi-Fi
18-
* only modules to interface with a MCU thorugh SPI and complete MCU modules
18+
* only modules to interface with a MCU through SPI and complete MCU modules
1919
* such as ATSAMW25, a heart of Arduino-mkr1000.
2020
*
2121
* ## Hardware/Firmware support

drivers/winc1500/winc1500_internal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ void _wifi_cb(uint8_t opcode, uint16_t size, uint32_t addr)
119119
addr += sizeof(event_info.prng_result);
120120
recv_size = event_info.prng_result.u16PrngSize;
121121
is_done = 1;
122-
if(hif_receive(addr, event_info.prng_result.pu8RngBuff,
122+
if (hif_receive(addr, event_info.prng_result.pu8RngBuff,
123123
recv_size, is_done) == M2M_SUCCESS) {
124124
_process_event(opcode, &event_info);
125125
}
@@ -253,4 +253,4 @@ static void _process_event(uint8_t msg_type, void *payload)
253253
break;
254254
}
255255
mbox_put(&dev->event_mbox, &msg);
256-
}
256+
}

0 commit comments

Comments
 (0)