Author Topic: ETH_INTERFACE (un)defined  (Read 2840 times)

Offline Estanislao

  • Newbie
  • *
  • Posts: 3
    • View Profile
ETH_INTERFACE (un)defined
« on: November 15, 2020, 09:27:23 PM »
Hello everyone,

I was following uTasker Kinetis V1.4 Tutorial, but now i feel stuck at step 7 because i can't connect uTasker simulator to my LAN network.

I have searched in the forum unlucky to get the solution. I think that main problem is related with ETH_INTERFACE macro which is enabled in config.h but seems to be disabled in application.c and i don't know why it happens because the last one include config.h

I'm trying with VS2019 in virtual machine with Win7 or with VS2013 in native Win7 but nothing change. My laptop is connected to my LAN with eth iface.

Someone can help me please?

Attached screenshot to reference

Estanislao


Offline mark

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 3236
    • View Profile
    • uTasker
Re: ETH_INTERFACE (un)defined
« Reply #1 on: November 15, 2020, 11:32:50 PM »
Hi

Possible problem 1:
Make sure that you are using the correct config.h file. Each project has one so ensure that the one that you are editing is the one in the uTaskerV1.4 project folder and not one in either of the loader project directories.

Possible problem 2:
Make sure that neither BLINKY nor HELLO_WORLD configurations are enabled. These will otherwise #undef various defines (including #undef ETH_INTERFACE) in order to give simplest possible configurations.

Regards

Mark

Offline Estanislao

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: ETH_INTERFACE (un)defined
« Reply #2 on: November 15, 2020, 11:56:24 PM »
Yes, that was the problem. I had BLINKY config enabled. I can go on :D

Thanks Mark!