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.

TMS320F28379D: C2000 sysconfig

Part Number: TMS320F28379D
Other Parts Discussed in Thread: SYSCONFIG

Hello, I'm new to this processor, so I'm configuring processor settings using the sysconfig interface initially. After configuring with sysconfig, can I intervene externally except for the functions inside "board_in it();" that are generated? Can I disable unwanted sections? For example, I'm using the SCI RX interrupt, but when generating this interrupt, an SCI TX interrupt also occurs. If I don't define the function related to the TX interrupt "__interrupt void INT_mySCIB_TX_ISR(void) "in the main file, I get an error. Can I disable this from within board_in it, or does sysconfig have the ability to only activate the SCI RX interrupt? Can you help me with this? Thank you.

  • Hi Enes,

    You have the option to call individual functions within Board_init instead of the entire Board_init function. SysConfig merely generates board.h and board.c, you can use the functions within these however you please.

    For example you could define a function in your main file called board_init_custom that calls all of the same functions as Board_init except for the interrupt enable for the TX interrupt.

    Let me know if this answers your question.

    Thank you,

    Luke