blob: 1b73651207b28785f2149cc23086846c54898fe7 [file] [log] [blame]
Austin Schuh208337d2022-01-01 14:29:11 -08001/*
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 * as it includes configuration headers and overrides in the correct order
15 *
16 * This header may be included by assembly code
17*/
18
19#include "pico/types.h"
20#include "pico/version.h"
21#include "pico/config.h"
22#include "pico/platform.h"
23#include "pico/error.h"
24
25#endif