733094aead
The RP2040 is new microcontroller from Raspberry Pi that features two Cortex M0s and eight PIO state machines that are good for crunching lots of data. It has 264k RAM and a built in UF2 bootloader too. Datasheet: https://pico.raspberrypi.org/files/rp2040_datasheet.pdf
20 lines
495 B
C
20 lines
495 B
C
/*
|
|
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
// ----------------------------------------------------------
|
|
// THIS FILE IS (NOT) AUTOGENERATED; EDIT when updating sdk/
|
|
// ----------------------------------------------------------
|
|
|
|
#ifndef _PICO_VERSION_H
|
|
#define _PICO_VERSION_H
|
|
|
|
#define PICO_SDK_VERSION_MAJOR 1
|
|
#define PICO_SDK_VERSION_MINOR 0
|
|
#define PICO_SDK_VERSION_REVISION 0
|
|
#define PICO_SDK_VERSION_STRING "1.0.0"
|
|
|
|
#endif
|