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.

Ethernet eventId : 48 and vectId (Interrupt) : 7

Hello, I have a problem when I run example of helloworld in board EVMK2E(version CCS5.0). I want to know what's the meaning of  the following(which is print in console.) .

PASS successfully initialized
Ethernet subsystem successfully initialized
Ethernet eventId : 48 and vectId (Interrupt) : 7

"48" and "7" stand for what? In fact, I can't find it in my codes. I don't know where the codes  set "48" and "7".

ndk_2_22_02_16, mcsdk_bios_3_01_00_03

  • Dear JiangNan,

    ndk_2_22_02_16, mcsdk_bios_3_01_00_03

    Why you are using very older MCSDK?
    We have now the processor SDK package, you can download it in following link for your platform K2H.
    www.ti.com/.../processor_sw.page


    PASS successfully initialized
    Ethernet subsystem successfully initialized
    Ethernet eventId : 48 and vectId (Interrupt) : 7

    "48" and "7" stand for what? In fact, I can't find it in my codes. I don't know where the codes set "48" and "7".

    You can find those code in the following file.
    C:\ti\pdk_keystone2_3_01_00_03\packages\ti\transport\ndk\nimu\src\nimu_eth.c
  • Hello, I have some trouble as follow:
    rc = NC_NetStart( hCfg, NetworkOpen, NetworkClose, NetworkIPAddr );
    Firstly, I want to know how the function of NC_NetStart() to work and NetworkOpen(),NetworkClose(),NetworkIPAddr() are executed.
    Secondly, I want to reach that dsp succeed to send data to pc after adding dhcp server to hCfg configuration(dsp can allocate IP Address to pc). So I write a program which can send data to dsp in NetworkOpen(). But I want to know whether NetworkOpen() is executed before dhcp server allocates IP for pc.