From 8cdda67f13ccf90e60033a630dcd8f5b4079d7b9 Mon Sep 17 00:00:00 2001 From: ymherklotz Date: Mon, 5 Mar 2018 10:31:59 +0000 Subject: Added basic project files --- Project/RTDSP/dsp_bios_.tcf | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Project/RTDSP/dsp_bios_.tcf (limited to 'Project/RTDSP/dsp_bios_.tcf') diff --git a/Project/RTDSP/dsp_bios_.tcf b/Project/RTDSP/dsp_bios_.tcf new file mode 100644 index 0000000..e439c70 --- /dev/null +++ b/Project/RTDSP/dsp_bios_.tcf @@ -0,0 +1,19 @@ +utils.loadPlatform("ti.platforms.dsk6713"); + +/* The following DSP/BIOS Features are enabled. */ +bios.enableRealTimeAnalysis(prog); +bios.enableRtdx(prog); +bios.enableTskManager(prog); + +bios.HWI.instance("HWI_INT4").interruptSource = prog.get("MCSP_1_Receive"); +bios.HWI.instance("HWI_INT4").fxn = prog.extern("ISR_AIC"); +bios.HWI.instance("HWI_INT4").useDispatcher = 1; +bios.HWI.instance("HWI_INT4").interruptSource = prog.get("MCSP_1_Transmit"); +bios.HWI.instance("HWI_INT4").interruptSource = prog.get("MCSP_1_Receive"); +bios.MEM.NOMEMORYHEAPS = 0; +bios.MEM.instance("IRAM").createHeap = 1; +bios.MEM.MALLOCSEG = prog.get("IRAM"); +bios.MEM.BIOSOBJSEG = prog.get("IRAM"); +// !GRAPHICAL_CONFIG_TOOL_SCRIPT_INSERT_POINT! + +prog.gen(); -- cgit