Skip to content

Commit

Permalink
Remove all tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Dec 26, 2019
1 parent 827db72 commit 8d6b74e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion esp_at_lib/src/esp/esp_mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ mem_realloc(void* ptr, size_t size) {
return mem_alloc(size); /* Only allocate memory */
}

old_size = MEM_BLOCK_USER_SIZE(ptr); /* Get size of old pointer */
old_size = MEM_BLOCK_USER_SIZE(ptr); /* Get size of old pointer */
new_ptr = mem_alloc(size); /* Try to allocate new memory block */
if (new_ptr != NULL) {
ESP_MEMCPY(new_ptr, ptr, ESP_MIN(size, old_size)); /* Copy old data to new array */
Expand Down
6 changes: 3 additions & 3 deletions esp_at_lib/src/system/esp_ll_stm32f429zi_nucleo.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
* STM32 TX (ESP RX): GPIOD, GPIO_PIN_5
* STM32 RX (ESP TX): GPIOD, GPIO_PIN_6
* RESET: GPIOD, GPIO_PIN_1
* GPIO0: GPIOD, GPIO_PIN_4
* GPIO2: GPIOD, GPIO_PIN_7
* CH_PD: GPIOD, GPIO_PIN_3
* GPIO0: GPIOD, GPIO_PIN_4
* GPIO2: GPIOD, GPIO_PIN_7
* CH_PD: GPIOD, GPIO_PIN_3
*
* USART_DMA: DMA1
* USART_DMA_STREAM: DMA_STREAM_5
Expand Down
2 changes: 1 addition & 1 deletion esp_at_lib/src/system/esp_ll_stm32f769i_discovery.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
/*
* Default UART configuration is (Connector CN2 on board):
*
* UART: UART5
* UART: UART5
* STM32 TX (ESP RX): GPIOC, GPIO_PIN_12
* STM32 RX (ESP TX): GPIOD, GPIO_PIN_2
* RESET: GPIOJ, GPIO_PIN_14
Expand Down

0 comments on commit 8d6b74e

Please sign in to comment.