SimpleFOClibrary 2.4.0
Loading...
Searching...
No Matches
drivers/hardware_specific/rp2040/rp2040_mcu.h
Go to the documentation of this file.
1
2
3#pragma once
4
5#include "Arduino.h"
6
7#if defined(TARGET_RP2040) || defined(TARGET_RP2350)
8
9
10
11typedef struct RP2040DriverParams {
12 int pins[6];
13 uint slice[6];
14 uint chan[6];
15 long pwm_frequency;
16 float dead_zone;
17} RP2040DriverParams;
18
19
20
21
22#endif