Home
last modified time | relevance | path

Searched refs:level (Results 1 – 18 of 18) sorted by relevance

/hal_rpi_pico-latest/tools/
Dbazel_common.py119 for level, level_text in log_levels:
120 logging.addLevelName(level, level_text)
121 logging.basicConfig(format="%(levelname)s %(message)s", level=logging.DEBUG)
Dextract_build_defines.py28 logging.basicConfig(level=logging.INFO)
Dextract_cmake_configs.py28 logging.basicConfig(level=logging.INFO)
Dextract_configs.py28 logging.basicConfig(level=logging.INFO)
/hal_rpi_pico-latest/src/common/pico_util/
Dqueue.c35 uint16_t level = queue_get_level_unsafe(q); in inc_index() local
36 if (level > q->max_level) { in inc_index()
37 q->max_level = level; in inc_index()
/hal_rpi_pico-latest/src/common/pico_util/include/pico/util/
Dqueue.h99 uint level = queue_get_level_unsafe(q); in queue_get_level() local
101 return level; in queue_get_level()
/hal_rpi_pico-latest/src/host/
DREADME.md5 This can be extremely useful for testing and debugging higher level application code, or porting co…
8 This base level host library provides a minimal environment to compile programs, but is likely suff…
/hal_rpi_pico-latest/docs/
Dmainpage.md7level libraries for dealing with timers, USB, synchronization and multi-core programming, along wi…
13 … necessarily much more visible to the developer than they might be on other higher-level platforms.
Dnormalise.css95 /* Text-level semantics
/hal_rpi_pico-latest/src/common/
DREADME.md2 of common header files, or high level functionality built entirely using `hardware_` or `pico_` lib…
/hal_rpi_pico-latest/src/rp2040/
DREADME.md3 `hardware_regs` contains low level hardware register #defines autogenerated from the RP2040 chip de…
/hal_rpi_pico-latest/
DCMakeLists.txt3 # Note: this CMakeLists.txt can be used as a top-level CMakeLists.txt for the SDK itself. For all o…
7 # This is a no-op unless we are the top-level CMakeLists.txt
Dpico_sdk_init.cmake22 # The log-level system was added in CMake 3.15.
DREADME.md9 C-level libraries/APIs for accessing all of the RP-series microcontroller's hardware including PIO …
11 Additionally, the SDK provides higher level libraries for dealing with timers, synchronization, Wi-…
13 … simple applications, fully-fledged runtime environments such as MicroPython, to low level software
/hal_rpi_pico-latest/src/rp2350/
DREADME.md4 `hardware_regs` contains low level hardware register #defines autogenerated from the RP2350 chip de…
/hal_rpi_pico-latest/src/rp2_common/
DREADME.md6 `pico_` provides higher level functionality you might generally find in say an OS kernel, as well
/hal_rpi_pico-latest/src/rp2_common/hardware_pwm/include/hardware/
Dpwm.h326 static inline void pwm_set_chan_level(uint slice_num, uint chan, uint16_t level) { in pwm_set_chan_level() argument
330 ((uint)level) << (chan ? PWM_CH0_CC_B_LSB : PWM_CH0_CC_A_LSB), in pwm_set_chan_level()
373 static inline void pwm_set_gpio_level(uint gpio, uint16_t level) { in pwm_set_gpio_level() argument
375 pwm_set_chan_level(pwm_gpio_to_slice_num(gpio), pwm_gpio_to_channel(gpio), level); in pwm_set_gpio_level()
/hal_rpi_pico-latest/tools/pioasm/
Dparser.yy224 /* value is a more limited top level expression... requiring parenthesis */