parent
2eb76bb058
commit
6994a3858d
@ -14,7 +14,7 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// PICO_CONFIG: PARAM_ASSERTIONS_ENABLED_PWM, Enable/disable assertions in the PWM module, type=bool, default=0, group=hadrware_pwm
|
||||
// PICO_CONFIG: PARAM_ASSERTIONS_ENABLED_PWM, Enable/disable assertions in the PWM module, type=bool, default=0, group=hardware_pwm
|
||||
#ifndef PARAM_ASSERTIONS_ENABLED_PWM
|
||||
#define PARAM_ASSERTIONS_ENABLED_PWM 0
|
||||
#endif
|
||||
|
@ -74,7 +74,7 @@ uint uart_set_baudrate(uart_inst_t *uart, uint baudrate) {
|
||||
invalid_params_if(UART, baudrate == 0);
|
||||
uint32_t baud_rate_div = (8 * clock_get_hz(clk_peri) / baudrate);
|
||||
uint32_t baud_ibrd = baud_rate_div >> 7;
|
||||
uint32_t baud_fbrd = ((baud_rate_div & 0x7f) + 1) / 2;
|
||||
uint32_t baud_fbrd;
|
||||
|
||||
if (baud_ibrd == 0) {
|
||||
baud_ibrd = 1;
|
||||
@ -82,6 +82,8 @@ uint uart_set_baudrate(uart_inst_t *uart, uint baudrate) {
|
||||
} else if (baud_ibrd >= 65535) {
|
||||
baud_ibrd = 65535;
|
||||
baud_fbrd = 0;
|
||||
} else {
|
||||
baud_fbrd = ((baud_rate_div & 0x7f) + 1) / 2;
|
||||
}
|
||||
|
||||
// Load PL011's baud divisor registers
|
||||
|
@ -24,7 +24,7 @@ extern "C" {
|
||||
* \include multicore.c
|
||||
*/
|
||||
|
||||
// PICO_CONFIG: PICO_CORE1_STACK_SIZE, Stack size for core 1, min=0x100, max=0x10000, default=PICO_STACK_SIZE/0x800, group=pico_multicore
|
||||
// PICO_CONFIG: PICO_CORE1_STACK_SIZE, Stack size for core 1, min=0x100, max=0x10000, default=PICO_STACK_SIZE (0x800), group=pico_multicore
|
||||
#ifndef PICO_CORE1_STACK_SIZE
|
||||
#ifdef PICO_STACK_SIZE
|
||||
#define PICO_CORE1_STACK_SIZE PICO_STACK_SIZE
|
||||
|
@ -127,7 +127,7 @@ void multicore_launch_core1(void (*entry)(void)) {
|
||||
}
|
||||
|
||||
void multicore_launch_core1_raw(void (*entry)(void), uint32_t *sp, uint32_t vector_table) {
|
||||
uint32_t cmd_sequence[] = {0, 0, 1, (uintptr_t) vector_table, (uintptr_t) sp, (uintptr_t) entry};
|
||||
const uint32_t cmd_sequence[] = {0, 0, 1, (uintptr_t) vector_table, (uintptr_t) sp, (uintptr_t) entry};
|
||||
|
||||
bool enabled = irq_is_enabled(SIO_IRQ_PROC0);
|
||||
irq_set_enabled(SIO_IRQ_PROC0, false);
|
||||
|
@ -51,13 +51,13 @@
|
||||
#define PICO_PRINTF_FTOA_BUFFER_SIZE 32U
|
||||
#endif
|
||||
|
||||
// PICO_CONFIG: PICO_PRINTF_SUPPORT_FLOAT, Enable floating point printing, default=1, group=pico_printf
|
||||
// PICO_CONFIG: PICO_PRINTF_SUPPORT_FLOAT, Enable floating point printing, type=bool, default=1, group=pico_printf
|
||||
// support for the floating point type (%f)
|
||||
#ifndef PICO_PRINTF_SUPPORT_FLOAT
|
||||
#define PICO_PRINTF_SUPPORT_FLOAT 1
|
||||
#endif
|
||||
|
||||
// PICO_CONFIG: PICO_PRINTF_SUPPORT_EXPONENTIAL, Enable exponential floating point printing, default=1, group=pico_printf
|
||||
// PICO_CONFIG: PICO_PRINTF_SUPPORT_EXPONENTIAL, Enable exponential floating point printing, type=bool, default=1, group=pico_printf
|
||||
// support for exponential floating point notation (%e/%g)
|
||||
#ifndef PICO_PRINTF_SUPPORT_EXPONENTIAL
|
||||
#define PICO_PRINTF_SUPPORT_EXPONENTIAL 1
|
||||
@ -73,12 +73,12 @@
|
||||
#define PICO_PRINTF_MAX_FLOAT 1e9
|
||||
#endif
|
||||
|
||||
// PICO_CONFIG: PICO_PRINTF_SUPPORT_LONG_LONG, Enable support for long long types (%llu or %p), default=1, group=pico_printf
|
||||
// PICO_CONFIG: PICO_PRINTF_SUPPORT_LONG_LONG, Enable support for long long types (%llu or %p), type=bool, default=1, group=pico_printf
|
||||
#ifndef PICO_PRINTF_SUPPORT_LONG_LONG
|
||||
#define PICO_PRINTF_SUPPORT_LONG_LONG 1
|
||||
#endif
|
||||
|
||||
// PICO_CONFIG: PICO_PRINTF_SUPPORT_PTRDIFF_T, Enable support for the ptrdiff_t type (%t), default=1, group=pico_printf
|
||||
// PICO_CONFIG: PICO_PRINTF_SUPPORT_PTRDIFF_T, Enable support for the ptrdiff_t type (%t), type=bool, default=1, group=pico_printf
|
||||
// ptrdiff_t is normally defined in <stddef.h> as long or long long type
|
||||
#ifndef PICO_PRINTF_SUPPORT_PTRDIFF_T
|
||||
#define PICO_PRINTF_SUPPORT_PTRDIFF_T 1
|
||||
|
@ -90,8 +90,8 @@ static void stdio_out_chars_crlf(stdio_driver_t *driver, const char *s, int len)
|
||||
}
|
||||
|
||||
static bool stdio_put_string(const char *s, int len, bool newline) {
|
||||
bool serialzed = stdout_serialize_begin();
|
||||
if (!serialzed) {
|
||||
bool serialized = stdout_serialize_begin();
|
||||
if (!serialized) {
|
||||
#if PICO_STDIO_IGNORE_NESTED_STDOUT
|
||||
return false;
|
||||
#endif
|
||||
@ -106,7 +106,7 @@ static bool stdio_put_string(const char *s, int len, bool newline) {
|
||||
stdio_out_chars_crlf(driver, &c, 1);
|
||||
}
|
||||
}
|
||||
if (serialzed) {
|
||||
if (serialized) {
|
||||
stdout_serialize_end();
|
||||
}
|
||||
return len;
|
||||
|
Loading…
Reference in New Issue
Block a user