1 /* 2 * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef PICO_H_ 8 #define PICO_H_ 9 10 /** \file pico.h 11 * \defgroup pico_base pico_base 12 * 13 * Core types and macros for the Raspberry Pi Pico SDK. This header is intended to be included by all source code 14 */ 15 16 #include "pico/types.h" 17 #include "pico/version.h" 18 #include "pico/config.h" 19 #include "pico/platform.h" 20 #include "pico/assert.h" 21 #include "pico/error.h" 22 23 #endif 24