- build-essential
- cmake
- git
- libusb-1.0-0
- ninja-build
- python-is-python3
- python3-pip
- python3-venv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blah |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated Cmake Pico project file | |
cmake_minimum_required(VERSION 3.13) | |
set(CMAKE_C_STANDARD 11) | |
set(CMAKE_CXX_STANDARD 17) | |
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | |
# Initialise pico_sdk from installed location | |
# (note this can come from environment, CMake cache etc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "pico/flash.h" | |
#include "pico/stdlib.h" | |
#include "pico/rand.h" | |
#include "pico/time.h" | |
#include "hardware/dma.h" | |
#include "hardware/flash.h" | |
#include "hardware/sync.h" |