/*guick board These two arrays are useful when using a B100 Kard with a Quick board */ // KardCxPx is a multi-dimensional array where the first // index points the Kard slot and the second point to the // GPIO pin on the Kard, the first four GPIO pins generaly // connect to the rail pin Px. uint8_t KardCxPx[7][6] = { { 68, 58, 62, 55, 82, 32 }, // Kard 0 { 57, 56, 63, 54, 83, 31 }, // Kard 1 { 86, 64, 5, 70, 84, 30 }, // Kard 2 { 22, 76, 9, 2, 35, 52 }, // Kard 3 { 23, 39, 8, 21, 34, 50 }, // Kard 4 { 78, 79, 10, 20, 33, 85 }, // Kard 5 { 0, 1, 19, 18, 71, 44 }, // Kard Com }; //KardCxPx5v works just like KardCxPx except there is a 1 //for pins that are 5 volt tolerant and can be used open collector uint8_t KardCxPx5v[7][6] = { { 0, 0, 0, 0, 1, 1 }, // Kard 0 { 0, 0, 0, 0, 1, 1 }, // Kard 1 { 1, 0, 1, 1, 1, 1 }, // Kard 2 { 1, 1, 1, 1, 1, 1 }, // Kard 3 { 1, 1, 1, 1, 1, 1 }, // Kard 4 { 1, 1, 1, 1, 1, 0 }, // Kard 5 { 1, 1, 1, 1, 1, 0 }, // Kard Com //has only on dedicated IO pin };