On page 500 of the document: //
// Configure Endpoint 1.
//
USBDevEndpointConfigSet(USB0_BASE, USB_EP_1, 64, DISABLE_NAK_LIMIT,
USB_EP_MODE_BULK | USB_EP_DEV_IN);
//
// Configure FIFO as a device IN endpoint FIFO starting at address 64
// and is 64 bytes…
Hi,
If you install TivaWare then all documentation will be in C:\ti\TivaWare_C_Series-2.2.0.295\docs. The TivaWare API user's guide is in SW-TM4C-DRL-UG-2.2.0.295.pdf.
Hi, I was trying to run the I2C example in the SW-TM4C-DRL-UG-2.1.0.12573.pdf. The problem is it only send out the address. Below is the code and test results. There must be something very simple that I am missing.
Thank you
void TEST () {
//
// Initialize…
Part Number: TM4C1294NCPDT Hi, the TivaWare Peripheral Driver Library document (SW-TM4C-DRL-UG-2.1.3.156) states "the Tiva I2C modules support both sending and receiving data as either a master or a slave, and also support the simultaneous operation as…
Part Number: TMS320F280045 Other Parts Discussed in Thread: MSP430F5335 , , C2000WARE Dear Sir
I'm considering the use of the TMS320F280045 in a new design. In the past I've used the TIVA TM4C1290 and am going to use the MSP430F5335 in a new design.…
Hi Ralph - Thanks for the quick reply. Actually, I was originally using I2C_MASTER_CMD_SINGLE_SEND instead of I2C_MASTER_CMD_BURST_SEND_START but I noticed when using I2C_MASTER_CMD_SINGLE_SEND it was showing a "stop" after the write and I was concerned…
Part Number: CC2500 Other Parts Discussed in Thread: SIMPLICITI , SW-DRL Supporting a legacy issue, based on 2.4 GHz SimpliciTI™ Protocol on Stellaris® (spmt211).
Where can I download the software for this kit?
The clock speed is set to 100KHz in this example. The speed is set by the call to: I2CMasterInitExpClk(I2C0_BASE, SysCtlClockGet(), false);
You can change the speed to 400KHz by changing the last parameter from "false" to "true". This is described in…
Take a look at the TivaWare example in: C:\ti\TivaWare_C_Series-2.2.0.295\examples\boards\ek-tm4c1294xl\hibernate_calendar
Suzanne Lim said: Does this function only works for waking up on hibernation? Is this possible to be used as alarm while running? …
To answer your original question, the function SysCtlDelay() is documented in TivaWare. A typical installation has the document in:
C:\ti\TivaWare_C_Series-2.2.0.295\docs\SW-TM4C-DRL-UG-2.2.0.295.pdf
See page 497.
As Andy pointed out, in general you are…