Select one of the symbols to view example projects that use it.
 
Outline
#define _PICO_H
#define __PICO_STRING
#define __PICO_XSTRING
#define __PICO_CONCAT1
#include "pico/types.h"
#include "pico/version.h"
#include
#include "pico/config.h"
#include "pico/platform.h"
#include "pico/error.h"
Files
loading...
SourceVuRaspberry Pi Pico SDK and ExamplesPicoSDKsrc/common/pico_base_headers/include/pico.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. * * SPDX-License-Identifier: BSD-3-Clause *//* ... */ #ifndef _PICO_H #define _PICO_H /** \file pico.h * \defgroup pico_base pico_base * * \brief Core types and macros for the Raspberry Pi Pico SDK. * * This header is intended to be included by all source code * as it includes configuration headers and overrides in the correct order * * This header may be included by assembly code *//* ... */ // We may be included by assembly which can't include <cdefs.h> #define __PICO_STRING(x) #x #define __PICO_XSTRING(x) __PICO_STRING(x) #define __PICO_CONCAT1(x, y) x ## y #include "pico/types.h" #include "pico/version.h" // PICO_CONFIG: PICO_CONFIG_HEADER, Unquoted path to header include in place of the default pico/config.h which may be desirable for build systems which can't easily generate the config_autogen header, group=pico_base #ifdef PICO_CONFIG_HEADER #include __PICO_XSTRING(PICO_CONFIG_HEADER) #else #include "pico/config.h" #endif #include "pico/platform.h" #include "pico/error.h" /* ... */ #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.