hi,
i'm using the dsp/bios to write a simple program that use gpio0 as output, when i try to compile the program the next apears:
error: identifier "GpioDataRegs" is undefined
error: identifier "EALLOW" is undefined
error: identifier "GpioMuxRegs" is undefined
error: identifier "EDIS" is undefined
the code is:
EALLOW;
GpioMuxRegs.GPAMUX1.bit.GPIO0=0;
GpioMuxRegs.GPADIR.bit.GPIO0=1;
EDIS;
GpioDataRegs.GPASET.bit.GPIO0=1;
Do i need to add something to my proyect?