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

eclipse include path added, but still can't find nrf_error.h?

I am able to use eclipse to run simple project, but after move the real one, getting lost of errors:

www.dropbox.com/.../Screenshot 2014-04-02 09.10.41.png

I add required include path include/s110, but still complain can't find it,

any helps are appreciated

Parents
  • I even change the size to 10, still same error #ifdef __STACK_SIZE .equ Stack_Size, 10 #else .equ Stack_Size, 10 #endif .globl __StackTop .globl __StackLimit __StackLimit: .space Stack_Size .size __StackLimit, . - __StackLimit __StackTop: .size __StackTop, . - __StackTop

    .section .heap
    .align 3
    

    #ifdef __HEAP_SIZE .equ Heap_Size, 10 #else .equ Heap_Size, 10 #endif

Reply
  • I even change the size to 10, still same error #ifdef __STACK_SIZE .equ Stack_Size, 10 #else .equ Stack_Size, 10 #endif .globl __StackTop .globl __StackLimit __StackLimit: .space Stack_Size .size __StackLimit, . - __StackLimit __StackTop: .size __StackTop, . - __StackTop

    .section .heap
    .align 3
    

    #ifdef __HEAP_SIZE .equ Heap_Size, 10 #else .equ Heap_Size, 10 #endif

Children
Related