Skip to content
Discussion options

You must be logged in to vote

The two decks have conflicting pins AI:TX1, RX1, NINA_SYSBOOT and Loco:IRQ, RST, CS. The Loco pins could be moved by the offered patching-pads but the board still conflicts with NINA_SYSBOOT and Loco:CS. The NINA_SYSBOOT on the other hand is only used during startup (for bootloading) so they might not conflict. I did a quick test by changing the AIdeck driver like so:

static const DeckDriver aideck_deck = {
    .vid = 0xBC,
    .pid = 0x12,
    .name = "bcAI",

    .usedGpio = /*DECK_USING_IO_1 | */ DECK_USING_IO_4,
    .usedPeriph = 0, // DECK_USING_UART2,

    .memoryDef = &espMemoryDef,
    .memoryDefSecondary = &gap8MemoryDef,

    .init = aideckInit,
    .test = aideckTest,
};

Then …

Replies: 2 comments 4 replies

Comment options

You must be logged in to vote
4 replies
@ArtemRedchych
Comment options

@tobbeanton
Comment options

@ArtemRedchych
Comment options

@joatjoses
Comment options

Answer selected by ArtemRedchych
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment