<< Chapter < Page | Chapter >> Page > |
This lab module will help you become familiar with TI DSP/BIOS LOG module and its use.
None
loglab
. Your project should have a DSP/BIOS configuration file named
loglab.tcf
.trace
. Use the default length of 64 and the logtype circular.TSK0
.TSK0
and bringing up its properties. On the Function tab next to Task Function type in the function name
_logTSK
. This will specify the C function
logTSK
as the function it will call.main.c
file and include a main function that does nothing and a function
logTSK
. The main structure of the file is#include<std.h>#include<log.h>#include<tsk.h>#include "loglabcfg.h"main()
{}logTSK()
{/* your code here */
}
logTSK
function that loops 20 times and writes some text indicating that the loop number is being printed and print the loop number. For instance, have it printLoop Number 0
Loop Number 1Loop Number 2
...
Notification Switch
Would you like to follow the 'Ti dsp/bios lab' conversation and receive update notifications?