This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello!
Is there a possibility to wire an external parallel interface on this F28377D Delfino Experimenter Kit?
Would you have typical hardware wiring scheme ? (16 bits data on EMI1F with CS, OE and WE connected.)
What is the clock frequency of the Kit ?Is it possible to modify it?
Thank you!
Hi,
You could wire up the pins on the Experimenter's kit to an external memory. The design wasn't specifically designed to make this an easy task - but it was designed such that the EMIF1 signals go from the MCU to the baseboard.
I would recommend referring to the EMIF section of the TRM, as Gautam suggests, for help in defining the interface between the C2000 and its memory. The TRM gives physical implementation examples.
Thank you,
Brett
Thank you i find out all i needed on the parallel interface.
I m now experiencing problems with ePWM interface visualing on oscilloscope.
From " epwm_deadband_c28.c
// TITLE: Check PWM Dead-Band"
//During the test, monitor ePWM1, ePWM2, and/or ePWM3 outputs
//! on a scope.
//!
//! - ePWM1A is on GPIO0
//! - ePWM1B is on GPIO1
//! - ePWM2A is on GPIO2
//! - ePWM2B is on GPIO3
//! - ePWM3A is on GPIO4
//! - ePWM3B is on GPIO5
I cant find pins GPIO0 to GPI05 are not available on this control card kit.
I set the ePWM pins to be on pins GPIO145 to GPIO150 as stated in TMS320F28377D documentation.
I dont see any life on the pins. Any idea why?
(other examples programma with SCi or blinking lights, ADC are working perfectly.)
Thank you.
Hi,
On this kit, the numbers on the Docking Station baseboard silkscreen do not align with the C2000 device's GPIO numbers or the C2000's pin numbers. Instead it matches with the connector's pin numbers.
GPIO00 - GPIO05 therefore do go to the baseboard.
I'd recommend taking a look at the below document to help you figure out the mapping:
\controlSUITE\development_kits\~controlCARDs\TMDSCNCD28377D_v1_4\R1_1_A\TMDSCNCD28377D_180cCARD_pinout_R1_1.pdf
Thank you,
Brett
Hi,
The clock initialization code can be found in SysCtrl.c:
\controlSUITE\device_support\F2837xD\v180\F2837xD_common\source\
By default, we use the external crystal located on the controlCARD. You could also use the internal oscillator if you change the software.
The crystal on the cCARD is 20MHz, as seen in the schematics:
\controlSUITE\development_kits\~controlCARDs\TMDSCNCD28377D_v1_4\R1_1_A\
(20MHz * 20 / 2 = 200MHz)
Thank you,
Brett
Hi,
Finally ready with wire and experiment card (resolver) connected to my external interface. (cf discussion above)
I experiment an unlikely problem: all my interface is EMIF1 but the pin 31 EM1WE_n is also connected to a LED.
It seems to prevent my pin 31 (write pin) from behaving as required: the level seems to be stuck at 3v whereas it should be driven from 0 to 3 and opposite to pin EM1OE_n (read pin).
- Could you provide me with a HW solution to remove the LED?
- Would you have any idea with a software workaround using EMIF1 ?
- Is it possible to drive the pin low when reading and high when writing?
Thank you!
Hi,
Having LED connected to WE pin should not make it stuck at one value. It could impact the timing based on the load but should still toggle during write operations. I would suggest to check the pinmux setting to make sure the pin has been configured as EMIF pin.
- Is it possible to drive the pin low when reading and high when writing?
No, WE pin is for write operation only. You have to use RNW pin for that but it will be driven high during READ and low during WRITE operation (opposite of what you are looking for).
Regards,
Vivek Singh
Hi,
The LED circuitry attached to GPIO31 should NOT affect the state of GPIO31 - it should not load GPIO31.
The LED should merely be driven high or low depending on the status of GPIO31.
===
My best recommendation for debugging what you are seeing is for you to try configuring GPIO31 as a GPIO Output. With this setup you can prove that GPIO31 can go high or low depending on how you configure its registers (in a relatively simple system). This will help you prove out the hardware and the connectivity.
Thank you,
Brett