problem with compiling WIZ7500P

08 May 2019

hello i use simple code (for wiz7500p kit)

  1. include "mbed.h" DigitalOut myledG(PC_04); /PC_04=GREEN, PC_00=RED, PC_05=BLUE DigitalOut myledB(PC_05); /PC_04=GREEN, PC_00=RED, PC_05=BLUE DigitalOut myledR(PC_00); /PC_04=GREEN, PC_00=RED, PC_05=BLUE uint8_t count_blink;

Serial pc(PC_10, PC_11); tx, rx int main() {

myledR=myledG=myledB=1; while(1) { myledG = 0; wait(1); myledG = 1; wait(1);

myledR = 0; wait(1); myledR = 1; wait(1);

myledB = 0; wait(1); myledB = 1; wait(1); pc.printf("The number of blink = %d\n", count_blink++); } }

I created 3 projects with the same code. name of projects: -LAN -mbed_blinky -problem

but bin-files DIFFERENTfor each project and work only mbed_blinky.WIZWIKI_W7500P (5).bin what is wrong???