Part Number: TMS320F28379D
Other Parts Discussed in Thread: C2000WARE
Tool/software: Code Composer Studio
Hello All,
I am working with LaunchPad XL TMS320F28379D. How can I configure the clock/ default clock of this board?
Thanks.
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.
Part Number: TMS320F28379D
Other Parts Discussed in Thread: C2000WARE
Tool/software: Code Composer Studio
Hello All,
I am working with LaunchPad XL TMS320F28379D. How can I configure the clock/ default clock of this board?
Thanks.
Arindam,
See the example projects in C2000Ware at:
C:\ti\c2000\C2000Ware_<version>\device_support\f2837xd\examples\cpu1
Also, see the F28379D workshop at:
https://training.ti.com/c2000-f2837xd-microcontroller-workshop
The clock is configured in the Sysctrl.c file. See lab 5 exercise.
I hope this helps. If this answers your question, please click the green "Verified Answer" button. Thanks.
- Ken
Hello Ken,
I was going through the Lab 5 and I found this chunk of code very confusing-
//--- Disable the Watchdog Timer
WdRegs.WDCR.all = 0x????;
// bit 15-7 0's: reserved
// bit 6 ?: WDDIS
// bit 5-3 ???: WDCHK
// bit 2-0 ???: WDPS
//--- System and Control Register
WdRegs.SCSR.all = 0x????;
// bit 15-3 0's: reserved
// bit 2 ?: WDINTS
// bit 1 ?: WDENINT
// bit 0 ?: WDOVERRIDE
There is no proper discussion about WDITS,EDENINT,WDOVERRIDE etc. where can I find the description of this registers for example what is the functionality of WDPS bits (3 bits) (reference needed).
Thanks.
Arindam,
The files with the '?' are the lab exercise files. Each registers is discussed in the modules. For the watchdog see module 5 in the workshop manual. You can also review the solution files. The complete workshop consists of the workshop manual (.pdf) and the lab/solution files.
I hope this helps. If this answers your question, please click the green "Verified Answer" button. Thanks.
- Ken
Thank you. It was my mistake. I was looking at the specific section that you mentioned.
Thanks a lot.