Skip to content

Commit 5abb4eb

Browse files
authored
Fix typos in the PICO_CONFIG settings (#1242)
1 parent 0121007 commit 5abb4eb

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

src/rp2_common/pico_btstack/include/pico/btstack_flash_bank.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
extern "C" {
1515
#endif
1616

17-
// PICO_CONFIG: PICO_FLASH_BANK_TOTAL_SIZE, Total size of the Bluetooth flash storage. Must be an even multiple of FLASH_SECTOR_SIZE, type=int default=FLASH_SECTOR_SIZE*2, group=pico_btstack
17+
// PICO_CONFIG: PICO_FLASH_BANK_TOTAL_SIZE, Total size of the Bluetooth flash storage. Must be an even multiple of FLASH_SECTOR_SIZE, type=int, default=FLASH_SECTOR_SIZE * 2, group=pico_btstack
1818
#ifndef PICO_FLASH_BANK_TOTAL_SIZE
1919
#define PICO_FLASH_BANK_TOTAL_SIZE (FLASH_SECTOR_SIZE * 2u)
2020
#endif
2121

22-
// PICO_CONFIG: PICO_FLASH_BANK_STORAGE_OFFSET, Offset in flash of the Bluetooth flash storage, type=int default=PICO_FLASH_SIZE_BYTES-PICO_FLASH_BANK_TOTAL_SIZE, group=pico_btstack
22+
// PICO_CONFIG: PICO_FLASH_BANK_STORAGE_OFFSET, Offset in flash of the Bluetooth flash storage, type=int, default=PICO_FLASH_SIZE_BYTES - PICO_FLASH_BANK_TOTAL_SIZE, group=pico_btstack
2323
#ifndef PICO_FLASH_BANK_STORAGE_OFFSET
2424
#define PICO_FLASH_BANK_STORAGE_OFFSET (PICO_FLASH_SIZE_BYTES - PICO_FLASH_BANK_TOTAL_SIZE)
2525
#endif
@@ -28,7 +28,7 @@ extern "C" {
2828
* \brief Return the singleton BTstack HAL flash instance, used for non-volatile storage
2929
* \ingroup pico_btstack
3030
*
31-
* \note By default two sectors at the end of flash are used (see \c PICO_FLASH_BANK_STORAGE_OFFSET
31+
* \note By default two sectors at the end of flash are used (see \c PICO_FLASH_BANK_STORAGE_OFFSET and \c PICO_FLASH_BANK_TOTAL_SIZE)
3232
*/
3333
const hal_flash_bank_t *pico_flash_bank_instance(void);
3434

src/rp2_common/pico_cyw43_arch/include/pico/cyw43_arch/arch_freertos.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#define CYW43_TASK_STACK_SIZE 1024
1313
#endif
1414

15-
// PICO_CONFIG: CYW43_TASK_PRIORITY, Priority for the CYW43 FreeRTOS task, type=int default=4, group=pico_cyw43_arch
15+
// PICO_CONFIG: CYW43_TASK_PRIORITY, Priority for the CYW43 FreeRTOS task, type=int, default=tskIDLE_PRIORITY + 4, group=pico_cyw43_arch
1616
#ifndef CYW43_TASK_PRIORITY
1717
#define CYW43_TASK_PRIORITY (tskIDLE_PRIORITY + 4)
1818
#endif

src/rp2_common/pico_cyw43_driver/include/pico/btstack_cyw43.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ extern "C" {
1313
#endif
1414

1515
/** \file pico/btstack_cyw43.h
16-
* \defgroup pico_bstack_cyw43
16+
* \defgroup pico_btstack_cyw43
1717
* \ingroup pico_cyw43_driver
1818
*
1919
* \brief Low-level Bluetooth HCI support.

src/rp2_common/pico_rand/include/pico/rand.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ extern "C" {
138138
#ifndef PICO_RAND_RAM_HASH_END
139139
#define PICO_RAND_RAM_HASH_END SRAM_END
140140
#endif
141-
// PICO_CONFIG: PICO_RAND_RAM_HASH_START, start of address in RAM (inclusive) to hash during pico_rand seed initialization, default=PICO_RAND_RAM_HASH_END-1024, group=pico_rand
141+
// PICO_CONFIG: PICO_RAND_RAM_HASH_START, start of address in RAM (inclusive) to hash during pico_rand seed initialization, default=PICO_RAND_RAM_HASH_END - 1024, group=pico_rand
142142
#ifndef PICO_RAND_RAM_HASH_START
143143
#define PICO_RAND_RAM_HASH_START (PICO_RAND_RAM_HASH_END - 1024u)
144144
#endif

src/rp2_common/pico_stdio_uart/include/pico/stdio_uart.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define PICO_STDIO_UART_DEFAULT_CRLF PICO_STDIO_DEFAULT_CRLF
2424
#endif
2525

26-
// PICO_CONFIG: PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK, Enable UART STDIO support for stdio_set_chars_available_callback. Can be disabled to make use of the uart elsewhere, type=bool default=1, group=pico_stdio_uart
26+
// PICO_CONFIG: PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK, Enable UART STDIO support for stdio_set_chars_available_callback. Can be disabled to make use of the uart elsewhere, type=bool, default=1, group=pico_stdio_uart
2727
#ifndef PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK
2828
#define PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK 1
2929
#endif

src/rp2_common/pico_stdio_usb/include/pico/stdio_usb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
#define PICO_STDIO_USB_DEVICE_SELF_POWERED 0
108108
#endif
109109

110-
// PICO_CONFIG: PICO_STDIO_USB_SUPPORT_CHARS_AVAILABLE_CALLBACK, Enable USB STDIO support for stdio_set_chars_available_callback. Can be disabled to make use of USB CDC RX callback elsewhere, type=bool default=1, group=pico_stdio_usb
110+
// PICO_CONFIG: PICO_STDIO_USB_SUPPORT_CHARS_AVAILABLE_CALLBACK, Enable USB STDIO support for stdio_set_chars_available_callback. Can be disabled to make use of USB CDC RX callback elsewhere, type=bool, default=1, group=pico_stdio_usb
111111
#ifndef PICO_STDIO_USB_SUPPORT_CHARS_AVAILABLE_CALLBACK
112112
#define PICO_STDIO_USB_SUPPORT_CHARS_AVAILABLE_CALLBACK 1
113113
#endif

0 commit comments

Comments
 (0)