1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #include "ch.h"
- #include "hal.h"
- #include "chprintf.h"
- BaseSequentialStream * chp = (BaseSequentialStream *) &SD1;
- char txbuf[] = "ABCD";
- void spiCallback(SPIDriver *spip) {
- chnWrite(&SD1, (const uint8_t *)"*", 1);
- spip->txbuf = 0;
- };
- static const SPIConfig spiCfg = {
- spiCallback,
- IOPORT2,
- 7,
- SPI_CR_DORD_MSB_FIRST |
- SPI_CR_CPOL_CPHA_MODE(0) |
- SPI_CR_SCK_FOSC_128,
- SPI_SR_SCK_FOSC_2
- };
- int main(void) {
-
- halInit();
- chSysInit();
-
- sdStart(&SD1, NULL);
-
- spiStart(&SPID1, &spiCfg);
- chprintf(chp, "AVR SPI program testhal program example.\r\n");
- while (TRUE) {
- spiSelect(&SPID1);
- spiStartSend(&SPID1, 4, txbuf);
- spiUnselect(&SPID1);
- chThdSleepMilliseconds(1000);
- }
-
- spiStop(&SPID1);
- }
|