24 lines
463 B
C
24 lines
463 B
C
/*
|
|
* 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
|
|
*
|
|
* Core types and macros for the Raspberry Pi Pico SDK. This header is intended to be included by all source code
|
|
*/
|
|
|
|
#include "pico/types.h"
|
|
#include "pico/version.h"
|
|
#include "pico/config.h"
|
|
#include "pico/platform.h"
|
|
#include "pico/assert.h"
|
|
#include "pico/error.h"
|
|
|
|
#endif
|