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.

LED on AM3359 ICE v1 with CCS Project

Other Parts Discussed in Thread: AM3359, SYSBIOS

Hey there,

i want to control any LED on the AM3359.

i think i missed to configure the project properties in the right way.

the build was succsessful but it doesnt blink..

here my code:

/*
* main.c
*/


#include <xdc/std.h>

#include <xdc/runtime/Error.h>
#include <xdc/runtime/System.h>
#include <ti/sysbios/BIOS.h>
#include <ti/sysbios/knl/Task.h>


#include "gpio.h"
#include "soc_AM335x.h"
#include "plat_utils.h"
#include "plat_mux.h"
#include "plat_led.h"
#include "osdrv_uart.h"
#include "osdrv_mmu.h"
#include "osdrv_version.h"
#include "plat_gpio.h"
#include "osdrv_oledlcd.h"


/*
* ======== main ========
*/
Int main() {

LEDInit();
LEDDIGOUTSetVal(16);

return(0);
}