rp2350: add pll generalized solution; fix ADC handles; pwm period fix

This commit is contained in:
soypat
2025-02-13 18:51:04 -03:00
committed by Ron Evans
parent 0ec1cb1e19
commit 9c7bbce029
9 changed files with 322 additions and 27 deletions
+14
View File
@@ -0,0 +1,14 @@
//go:build rp2350 && !rp2350b
package machine
// Analog pins on RP2350a.
const (
ADC0 Pin = GPIO26
ADC1 Pin = GPIO27
ADC2 Pin = GPIO28
ADC3 Pin = GPIO29
// fifth ADC channel.
thermADC = 30
)