Hello, I've created a Synergy project for SK-S7G2 board. Then I've selected the S7G2-SK BSP project template and finally I've written a simple code to set the LED1, LED2 and LED3 using the Synergy API as shown g_ioport.p_api- pinWrite(Leds.p_leds[BSP_LED_LED1] ,IOPORT_LEVEL_HIGH); g_ioport.p_api- pinWrite(Leds.p_leds[BSP_LED_LED2] ,IOPORT_LEVEL_HIGH); g_ioport.p_api- pinWrite(Leds.p_leds[BSP_LED_LED3] ,IOPORT_LEVEL_HIGH); Everithing goes well with LED1 and LED3. However LED2 does not work. I've digged into the bsp code and see the next: I assume this is as a wrong value for the LED2 so I've tried to change it to 1. The problem is when I build the project the enumeration for the LED2 remains to 2. Any hints to solve this issue? regards, gaston
↧