This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Eclipse Kepler as IDE for nordic SDK stucks on __INLINE ()

I am trying to setup the hrs sample with gcc (4.8.3) and Eclipse Kepler but althoug it compiles fine the editor is complaining about:

Symbol 'softdevice_evt_schedule' could not be resolved Symbol 'app_timer_evt_schedule' could not be resolved

Can sombody explain that issue?

Brgds Maik

Parents
  • FormerMember
    0 FormerMember

    I am not sure if this is the solution but you could give it a try.

    1. Go to the properties of the project in Eclipse. Select the folder and click Alt+Enter.
    2. Go to C/C++ General -> Paths and Symbols
    3. In Includes tab, select GNU C
    4. Click on Add
    5. In the 'Add path directory window' select 'File system...'
    6. Select the path in the SDK (the include directory and folders inside it) where the symbols that you want are defined.
    7. Click OK, OK & Apply. Now you have to see these directories in the include path of your project.

    With this eclipse also will know where these symbols are defined. This will also let you use the useful 'F3' button to go to the definition of any variable/symbol/function. Cheers, Prithvi

Reply
  • FormerMember
    0 FormerMember

    I am not sure if this is the solution but you could give it a try.

    1. Go to the properties of the project in Eclipse. Select the folder and click Alt+Enter.
    2. Go to C/C++ General -> Paths and Symbols
    3. In Includes tab, select GNU C
    4. Click on Add
    5. In the 'Add path directory window' select 'File system...'
    6. Select the path in the SDK (the include directory and folders inside it) where the symbols that you want are defined.
    7. Click OK, OK & Apply. Now you have to see these directories in the include path of your project.

    With this eclipse also will know where these symbols are defined. This will also let you use the useful 'F3' button to go to the definition of any variable/symbol/function. Cheers, Prithvi

Children
Related