21 lines
570 B
C
21 lines
570 B
C
/*
|
|
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PICO_CONFIG_H_
|
|
#define PICO_CONFIG_H_
|
|
|
|
// -----------------------------------------------------
|
|
// NOTE: THIS HEADER IS ALSO INCLUDED BY ASSEMBLER SO
|
|
// SHOULD ONLY CONSIST OF PREPROCESSOR DIRECTIVES
|
|
// OR USE #ifndef __ASSEMBLER__ guards
|
|
// -------------
|
|
|
|
// PICO_CONFIG_HEADER_FILES and then PICO_SDK_<PLATFORM>_CONFIG_INCLUDE_FILES
|
|
// entries are dumped in order at build time into this generated header
|
|
|
|
#include "pico/config_autogen.h"
|
|
|
|
#endif |