Searched refs:level (Results 1 – 18 of 18) sorted by relevance
/hal_rpi_pico-latest/tools/ |
D | bazel_common.py | 119 for level, level_text in log_levels: 120 logging.addLevelName(level, level_text) 121 logging.basicConfig(format="%(levelname)s %(message)s", level=logging.DEBUG)
|
D | extract_build_defines.py | 28 logging.basicConfig(level=logging.INFO)
|
D | extract_cmake_configs.py | 28 logging.basicConfig(level=logging.INFO)
|
D | extract_configs.py | 28 logging.basicConfig(level=logging.INFO)
|
/hal_rpi_pico-latest/src/common/pico_util/ |
D | queue.c | 35 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/ |
D | queue.h | 99 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/ |
D | README.md | 5 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/ |
D | mainpage.md | 7 …level 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.
|
D | normalise.css | 95 /* Text-level semantics
|
/hal_rpi_pico-latest/src/common/ |
D | README.md | 2 of common header files, or high level functionality built entirely using `hardware_` or `pico_` lib…
|
/hal_rpi_pico-latest/src/rp2040/ |
D | README.md | 3 `hardware_regs` contains low level hardware register #defines autogenerated from the RP2040 chip de…
|
/hal_rpi_pico-latest/ |
D | CMakeLists.txt | 3 # 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
|
D | pico_sdk_init.cmake | 22 # The log-level system was added in CMake 3.15.
|
D | README.md | 9 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/ |
D | README.md | 4 `hardware_regs` contains low level hardware register #defines autogenerated from the RP2350 chip de…
|
/hal_rpi_pico-latest/src/rp2_common/ |
D | README.md | 6 `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/ |
D | pwm.h | 326 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/ |
D | parser.yy | 224 /* value is a more limited top level expression... requiring parenthesis */
|