1
0
Fork 0

Add RP2040 SCRAMBLE v2 (#19489)

This commit is contained in:
Jay Greco 2023-01-27 00:03:57 -08:00 committed by GitHub
parent 6e42b58549
commit b3dca4bb36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 288 additions and 51 deletions

View file

@ -0,0 +1,18 @@
// Copyright 2022 Jay Greco
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "scramble.h"
// Indication LED settings
#define LED_ON 2
#define LED_DIM 1
#define LED_OFF 0
#define GPIO_STATE_LOW 0
#define GPIO_STATE_HIGH 1
#define PIN_LED B2
void set_scramble_LED(uint8_t mode);