LM3S的SPI,用SPI读写设置,读不到数据啊!
[复制链接]
LM3S的SPI,用SPI读写TC72一直都不到数据,读时,在主模式下SCK有波形吗?设置如下。 // Enables a peripheral SSI0 SysCtlPeripheralEnable(SYSCTL_PERIPH_SSI0); // Configures pin(s) for use by the SSI peripheral // PA2 SSI0CLK(SSCK) PA4 SSI0RX(MISO) PA5 SSI0TX(MOSI) GPIOPinTypeSSI(GPIO_PORTA_BASE,(GPIO_PIN_2 | GPIO_PIN_4 | GPIO_PIN_5)); // PA2 SSI0CLK(SSCK) //GPIOPinTypeSSI(GPIO_PORTA_BASE, GPIO_PIN_2); // PA4 SSI0RX(MISO) //GPIOPinTypeSSI(GPIO_PORTA_BASE, GPIO_PIN_4); // PA5 SSI0TX(MOSI) //GPIOPinTypeSSI(GPIO_PORTA_BASE, GPIO_PIN_5);
// Disables the synchronous serial interface SSIDisable(SSI0_BASE);
// Configure the SSI, 1MHZ SSIConfigSetExpClk(SSI0_BASE, // Base //SysCtlClockGet(), // SSIClk 20000000, // 5MHZ SSI_FRF_MOTO_MODE_2, // Protocol SSI_MODE_MASTER, // Mode 1000000, // BitRate 8 // DataWidth ); // Enables the synchronous serial interface SSIEnable(SSI0_BASE); 有用模块读写SPI EEPROM的吗?
|