pico-sdk/src/common
Jonathan Reichelt Gjertsen b2832b3acb
Fix wrong format string in alarm_pool_dump_key (#437)
Fixes the following warning when building for host

```
[...]/pico-sdk/src/common/pico_time/time.c: In function 'alarm_pool_dump_key':
[...]/pico-sdk/src/common/pico_time/time.c:282:15: warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'uint64_t' {aka 'long long unsigned int'} [-Wformat=]
     printf("%ld", to_us_since_boot(get_entry(pool, id)->target));
             ~~^   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
             %I64d
```
2021-05-24 16:32:31 -05:00
..
boot_picoboot Initial Release 2021-01-20 10:44:27 -06:00
boot_uf2 Initial Release 2021-01-20 10:44:27 -06:00
pico_base Rework ordering of cmake, so that libraries in subdirectories can add to internal lists as PICO_SDK_POST_LIST_FILES, PICO_CONFIG_HEADER_FILES etc. (#382) 2021-05-11 10:33:34 -05:00
pico_binary_info make host pico_platform.h and binary_info.h CMakeLists.txt safe for inclusion in non SDK build (#388) 2021-05-11 10:37:49 -05:00
pico_bit_ops Initial Release 2021-01-20 10:44:27 -06:00
pico_divider Initial Release 2021-01-20 10:44:27 -06:00
pico_stdlib make all non hardware_ libraries foo add C preprocessor definition LIB_FOO=1, and remove bespoke definitions which were all undocumented anyway (#374) 2021-05-04 08:00:17 -05:00
pico_sync add timeout_us/until to mutex/sem blocking methods (#402) 2021-05-12 16:32:45 -05:00
pico_time Fix wrong format string in alarm_pool_dump_key (#437) 2021-05-24 16:32:31 -05:00
pico_util Optional feature to get the max level that has ever been held by a queue (#444) 2021-05-24 16:31:30 -05:00
CMakeLists.txt Rework ordering of cmake, so that libraries in subdirectories can add to internal lists as PICO_SDK_POST_LIST_FILES, PICO_CONFIG_HEADER_FILES etc. (#382) 2021-05-11 10:33:34 -05:00
README.md Initial Release 2021-01-20 10:44:27 -06:00

This directory code that is common to all builds regardless of PICO_PLATFORM. It is a mix of common header files, or high level functionality built entirely using hardware_ or pico_ libraries provided by the actual target `PICO_PLATFORM``