mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-04-18 02:42:44 +00:00
Fix typos in the PICO_CONFIG settings (#1242)
This commit is contained in:
parent
0121007c85
commit
5abb4eb911
src/rp2_common
pico_btstack/include/pico
pico_cyw43_arch/include/pico/cyw43_arch
pico_cyw43_driver/include/pico
pico_rand/include/pico
pico_stdio_uart/include/pico
pico_stdio_usb/include/pico
@ -14,12 +14,12 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// 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
|
// 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
|
||||||
#ifndef PICO_FLASH_BANK_TOTAL_SIZE
|
#ifndef PICO_FLASH_BANK_TOTAL_SIZE
|
||||||
#define PICO_FLASH_BANK_TOTAL_SIZE (FLASH_SECTOR_SIZE * 2u)
|
#define PICO_FLASH_BANK_TOTAL_SIZE (FLASH_SECTOR_SIZE * 2u)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// 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
|
// 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
|
||||||
#ifndef PICO_FLASH_BANK_STORAGE_OFFSET
|
#ifndef PICO_FLASH_BANK_STORAGE_OFFSET
|
||||||
#define PICO_FLASH_BANK_STORAGE_OFFSET (PICO_FLASH_SIZE_BYTES - PICO_FLASH_BANK_TOTAL_SIZE)
|
#define PICO_FLASH_BANK_STORAGE_OFFSET (PICO_FLASH_SIZE_BYTES - PICO_FLASH_BANK_TOTAL_SIZE)
|
||||||
#endif
|
#endif
|
||||||
@ -28,7 +28,7 @@ extern "C" {
|
|||||||
* \brief Return the singleton BTstack HAL flash instance, used for non-volatile storage
|
* \brief Return the singleton BTstack HAL flash instance, used for non-volatile storage
|
||||||
* \ingroup pico_btstack
|
* \ingroup pico_btstack
|
||||||
*
|
*
|
||||||
* \note By default two sectors at the end of flash are used (see \c PICO_FLASH_BANK_STORAGE_OFFSET
|
* \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)
|
||||||
*/
|
*/
|
||||||
const hal_flash_bank_t *pico_flash_bank_instance(void);
|
const hal_flash_bank_t *pico_flash_bank_instance(void);
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#define CYW43_TASK_STACK_SIZE 1024
|
#define CYW43_TASK_STACK_SIZE 1024
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// PICO_CONFIG: CYW43_TASK_PRIORITY, Priority for the CYW43 FreeRTOS task, type=int default=4, group=pico_cyw43_arch
|
// PICO_CONFIG: CYW43_TASK_PRIORITY, Priority for the CYW43 FreeRTOS task, type=int, default=tskIDLE_PRIORITY + 4, group=pico_cyw43_arch
|
||||||
#ifndef CYW43_TASK_PRIORITY
|
#ifndef CYW43_TASK_PRIORITY
|
||||||
#define CYW43_TASK_PRIORITY (tskIDLE_PRIORITY + 4)
|
#define CYW43_TASK_PRIORITY (tskIDLE_PRIORITY + 4)
|
||||||
#endif
|
#endif
|
||||||
|
@ -13,7 +13,7 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/** \file pico/btstack_cyw43.h
|
/** \file pico/btstack_cyw43.h
|
||||||
* \defgroup pico_bstack_cyw43
|
* \defgroup pico_btstack_cyw43
|
||||||
* \ingroup pico_cyw43_driver
|
* \ingroup pico_cyw43_driver
|
||||||
*
|
*
|
||||||
* \brief Low-level Bluetooth HCI support.
|
* \brief Low-level Bluetooth HCI support.
|
||||||
|
@ -138,7 +138,7 @@ extern "C" {
|
|||||||
#ifndef PICO_RAND_RAM_HASH_END
|
#ifndef PICO_RAND_RAM_HASH_END
|
||||||
#define PICO_RAND_RAM_HASH_END SRAM_END
|
#define PICO_RAND_RAM_HASH_END SRAM_END
|
||||||
#endif
|
#endif
|
||||||
// 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
|
// 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
|
||||||
#ifndef PICO_RAND_RAM_HASH_START
|
#ifndef PICO_RAND_RAM_HASH_START
|
||||||
#define PICO_RAND_RAM_HASH_START (PICO_RAND_RAM_HASH_END - 1024u)
|
#define PICO_RAND_RAM_HASH_START (PICO_RAND_RAM_HASH_END - 1024u)
|
||||||
#endif
|
#endif
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#define PICO_STDIO_UART_DEFAULT_CRLF PICO_STDIO_DEFAULT_CRLF
|
#define PICO_STDIO_UART_DEFAULT_CRLF PICO_STDIO_DEFAULT_CRLF
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// 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
|
// 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
|
||||||
#ifndef PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK
|
#ifndef PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK
|
||||||
#define PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK 1
|
#define PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK 1
|
||||||
#endif
|
#endif
|
||||||
|
@ -107,7 +107,7 @@
|
|||||||
#define PICO_STDIO_USB_DEVICE_SELF_POWERED 0
|
#define PICO_STDIO_USB_DEVICE_SELF_POWERED 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// 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
|
// 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
|
||||||
#ifndef PICO_STDIO_USB_SUPPORT_CHARS_AVAILABLE_CALLBACK
|
#ifndef PICO_STDIO_USB_SUPPORT_CHARS_AVAILABLE_CALLBACK
|
||||||
#define PICO_STDIO_USB_SUPPORT_CHARS_AVAILABLE_CALLBACK 1
|
#define PICO_STDIO_USB_SUPPORT_CHARS_AVAILABLE_CALLBACK 1
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user