Make vcmailbox call change for AUX SPI instances

This commit is contained in:
RetiredWizard 2023-02-22 11:58:13 -05:00
parent 7c717a54f3
commit c73f008688

View File

@ -183,7 +183,7 @@ bool common_hal_busio_spi_configure(busio_spi_obj_t *self,
if (self->index == 1 || self->index == 2) { if (self->index == 1 || self->index == 2) {
SPI1_Type *p = aux_spi[self->index]; SPI1_Type *p = aux_spi[self->index];
uint32_t source_clock = vcmailbox_get_clock_rate_measured(VCMAILBOX_CLOCK_CORE); uint32_t source_clock = vcmailbox_get_clock_rate(VCMAILBOX_CLOCK_CORE);
uint16_t clock_divider = source_clock / baudrate; uint16_t clock_divider = source_clock / baudrate;
if (source_clock % baudrate > 0) { if (source_clock % baudrate > 0) {
clock_divider += 2; clock_divider += 2;