Re-add APA102
This commit is contained in:
parent
b310b04007
commit
38fd9c25f2
@ -31,8 +31,10 @@
|
|||||||
#ifdef MICROPY_HW_NEOPIXEL
|
#ifdef MICROPY_HW_NEOPIXEL
|
||||||
bool neopixel_in_use;
|
bool neopixel_in_use;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef MICROPY_HW_APA102_MOSI
|
||||||
#define GPIO_PORT_COUNT (IOMUXC_SW_PAD_CTL_PAD_COUNT / 32 + 1)
|
bool apa102_sck_in_use;
|
||||||
|
bool apa102_mosi_in_use;
|
||||||
|
#endif
|
||||||
|
|
||||||
STATIC bool claimed_pins[IOMUXC_SW_PAD_CTL_PAD_COUNT];
|
STATIC bool claimed_pins[IOMUXC_SW_PAD_CTL_PAD_COUNT];
|
||||||
STATIC bool never_reset_pins[IOMUXC_SW_PAD_CTL_PAD_COUNT];
|
STATIC bool never_reset_pins[IOMUXC_SW_PAD_CTL_PAD_COUNT];
|
||||||
@ -55,6 +57,10 @@ void reset_all_pins(void) {
|
|||||||
#ifdef MICROPY_HW_NEOPIXEL
|
#ifdef MICROPY_HW_NEOPIXEL
|
||||||
neopixel_in_use = false;
|
neopixel_in_use = false;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef MICROPY_HW_APA102_MOSI
|
||||||
|
apa102_sck_in_use = false;
|
||||||
|
apa102_mosi_in_use = false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// Since i.MX pins need extra register and reset information to reset properly,
|
// Since i.MX pins need extra register and reset information to reset properly,
|
||||||
@ -72,6 +78,17 @@ void common_hal_reset_pin(const mcu_pin_obj_t* pin) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef MICROPY_HW_APA102_MOSI
|
||||||
|
if (pin->mux_idx == MICROPY_HW_APA102_MOSI->mux_idx ||
|
||||||
|
pin->mux_idx == MICROPY_HW_APA102_SCK->mux_idx) {
|
||||||
|
apa102_mosi_in_use = apa102_mosi_in_use && pin->mux_idx != MICROPY_HW_APA102_MOSI->mux_idx;
|
||||||
|
apa102_sck_in_use = apa102_sck_in_use && pin->mux_idx != MICROPY_HW_APA102_SCK->mux_idx;
|
||||||
|
if (!apa102_sck_in_use && !apa102_mosi_in_use) {
|
||||||
|
rgb_led_status_init();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void common_hal_never_reset_pin(const mcu_pin_obj_t* pin) {
|
void common_hal_never_reset_pin(const mcu_pin_obj_t* pin) {
|
||||||
@ -84,6 +101,14 @@ bool common_hal_mcu_pin_is_free(const mcu_pin_obj_t* pin) {
|
|||||||
return !neopixel_in_use;
|
return !neopixel_in_use;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef MICROPY_HW_APA102_MOSI
|
||||||
|
if (pin == MICROPY_HW_APA102_MOSI) {
|
||||||
|
return !apa102_mosi_in_use;
|
||||||
|
}
|
||||||
|
if (pin == MICROPY_HW_APA102_SCK) {
|
||||||
|
return !apa102_sck_in_use;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return !claimed_pins[pin->mux_idx];
|
return !claimed_pins[pin->mux_idx];
|
||||||
}
|
}
|
||||||
@ -100,6 +125,14 @@ void common_hal_mcu_pin_claim(const mcu_pin_obj_t* pin) {
|
|||||||
neopixel_in_use = true;
|
neopixel_in_use = true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef MICROPY_HW_APA102_MOSI
|
||||||
|
if (pin == MICROPY_HW_APA102_MOSI) {
|
||||||
|
apa102_mosi_in_use = true;
|
||||||
|
}
|
||||||
|
if (pin == MICROPY_HW_APA102_SCK) {
|
||||||
|
apa102_sck_in_use = true;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void claim_pin(const mcu_pin_obj_t* pin) {
|
void claim_pin(const mcu_pin_obj_t* pin) {
|
||||||
|
@ -35,6 +35,10 @@
|
|||||||
#ifdef MICROPY_HW_NEOPIXEL
|
#ifdef MICROPY_HW_NEOPIXEL
|
||||||
extern bool neopixel_in_use;
|
extern bool neopixel_in_use;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef MICROPY_HW_APA102_MOSI
|
||||||
|
extern bool apa102_sck_in_use;
|
||||||
|
extern bool apa102_mosi_in_use;
|
||||||
|
#endif
|
||||||
|
|
||||||
void reset_all_pins(void);
|
void reset_all_pins(void);
|
||||||
void claim_pin(const mcu_pin_obj_t* pin);
|
void claim_pin(const mcu_pin_obj_t* pin);
|
||||||
|
Loading…
Reference in New Issue
Block a user