Beware that this post is related to an SDK in maintenance mode
More Info: Consider nRF Connect SDK for new designs
This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Include error - SES

I am new with the NRF52 SDK and I want to modify an NFC example (writable_ndef_msg). I am trying to add a NDEF parser but I have issues with the includes.

I have add the header path inside of : Preprocessor>Include Directories.

I have also add the .c file in the folder nRF_Librairies.

But I always have this error : 

I think the problem is simple, but I haven’t been able to solve it.

Thanks in advance for your help.

writable_ndef_msg_modified.zip

Parents
  • Nordic SDK modules are conditionally compiled, there's something like 

    #if NRF_MODULE_ENABLED(NDEF_MSG_PARSER
    
    .
    
    .
    
    .
    
    #endif

    You'll need to set

    #define NDEF_MSG_PARSER_ENABLED 1

    in sdk_config.h to actually compile the function. [edit] I'm not sure if it's exactly NDEF_MSG_PARSER_ENABLED, check the .c file top to find out the right parameter.

  • Thanks for your explanation.

    I've had some difficulties to understand which paramaters I need, finally I have found this : 

    // <e> NFC_NDEF_MSG_PARSER_ENABLED - nfc_ndef_msg_parser - NFC NDEF message parser module
    //==========================================================
    #ifndef NFC_NDEF_MSG_PARSER_ENABLED
    #define NFC_NDEF_MSG_PARSER_ENABLED 1
    #endif
    // <e> NFC_NDEF_MSG_PARSER_LOG_ENABLED - Enables logging in the module.
    //==========================================================
    #ifndef NFC_NDEF_MSG_PARSER_LOG_ENABLED
    #define NFC_NDEF_MSG_PARSER_LOG_ENABLED 1
    #endif
    // <o> NFC_NDEF_MSG_PARSER_LOG_LEVEL  - Default Severity level
     
    // <0=> Off 
    // <1=> Error 
    // <2=> Warning 
    // <3=> Info 
    // <4=> Debug 
    
    #ifndef NFC_NDEF_MSG_PARSER_LOG_LEVEL
    #define NFC_NDEF_MSG_PARSER_LOG_LEVEL 3
    #endif
    
    // <o> NFC_NDEF_MSG_PARSER_INFO_COLOR  - ANSI escape code prefix.
     
    // <0=> Default 
    // <1=> Black 
    // <2=> Red 
    // <3=> Green 
    // <4=> Yellow 
    // <5=> Blue 
    // <6=> Magenta 
    // <7=> Cyan 
    // <8=> White 
    
    #ifndef NFC_NDEF_MSG_PARSER_INFO_COLOR
    #define NFC_NDEF_MSG_PARSER_INFO_COLOR 0
    #endif
    
    
    
    
    
    // <q> NFC_NDEF_RECORD_ENABLED  - nfc_ndef_record - NFC NDEF Record generator module
     
    
    #ifndef NFC_NDEF_RECORD_ENABLED
    #define NFC_NDEF_RECORD_ENABLED 1
    #endif
    
    // <e> NFC_NDEF_RECORD_PARSER_ENABLED - nfc_ndef_record_parser - NFC NDEF Record parser module
    //==========================================================
    #ifndef NFC_NDEF_RECORD_PARSER_ENABLED
    #define NFC_NDEF_RECORD_PARSER_ENABLED 1
    #endif
    // <e> NFC_NDEF_RECORD_PARSER_LOG_ENABLED - Enables logging in the module.
    //==========================================================
    #ifndef NFC_NDEF_RECORD_PARSER_LOG_ENABLED
    #define NFC_NDEF_RECORD_PARSER_LOG_ENABLED 1
    #endif
    // <o> NFC_NDEF_RECORD_PARSER_LOG_LEVEL  - Default Severity level
     
    // <0=> Off 
    // <1=> Error 
    // <2=> Warning 
    // <3=> Info 
    // <4=> Debug 
    
    #ifndef NFC_NDEF_RECORD_PARSER_LOG_LEVEL
    #define NFC_NDEF_RECORD_PARSER_LOG_LEVEL 3
    #endif
    
    // <o> NFC_NDEF_RECORD_PARSER_INFO_COLOR  - ANSI escape code prefix.
     
    // <0=> Default 
    // <1=> Black 
    // <2=> Red 
    // <3=> Green 
    // <4=> Yellow 
    // <5=> Blue 
    // <6=> Magenta 
    // <7=> Cyan 
    // <8=> White 
    
    #ifndef NFC_NDEF_RECORD_PARSER_INFO_COLOR
    #define NFC_NDEF_RECORD_PARSER_INFO_COLOR 0
    #endif
    
    

    With this, I have no more troubles with the includes. Now, I have issues with the use of the parser but i will make an other ticket if necessary.

Reply
  • Thanks for your explanation.

    I've had some difficulties to understand which paramaters I need, finally I have found this : 

    // <e> NFC_NDEF_MSG_PARSER_ENABLED - nfc_ndef_msg_parser - NFC NDEF message parser module
    //==========================================================
    #ifndef NFC_NDEF_MSG_PARSER_ENABLED
    #define NFC_NDEF_MSG_PARSER_ENABLED 1
    #endif
    // <e> NFC_NDEF_MSG_PARSER_LOG_ENABLED - Enables logging in the module.
    //==========================================================
    #ifndef NFC_NDEF_MSG_PARSER_LOG_ENABLED
    #define NFC_NDEF_MSG_PARSER_LOG_ENABLED 1
    #endif
    // <o> NFC_NDEF_MSG_PARSER_LOG_LEVEL  - Default Severity level
     
    // <0=> Off 
    // <1=> Error 
    // <2=> Warning 
    // <3=> Info 
    // <4=> Debug 
    
    #ifndef NFC_NDEF_MSG_PARSER_LOG_LEVEL
    #define NFC_NDEF_MSG_PARSER_LOG_LEVEL 3
    #endif
    
    // <o> NFC_NDEF_MSG_PARSER_INFO_COLOR  - ANSI escape code prefix.
     
    // <0=> Default 
    // <1=> Black 
    // <2=> Red 
    // <3=> Green 
    // <4=> Yellow 
    // <5=> Blue 
    // <6=> Magenta 
    // <7=> Cyan 
    // <8=> White 
    
    #ifndef NFC_NDEF_MSG_PARSER_INFO_COLOR
    #define NFC_NDEF_MSG_PARSER_INFO_COLOR 0
    #endif
    
    
    
    
    
    // <q> NFC_NDEF_RECORD_ENABLED  - nfc_ndef_record - NFC NDEF Record generator module
     
    
    #ifndef NFC_NDEF_RECORD_ENABLED
    #define NFC_NDEF_RECORD_ENABLED 1
    #endif
    
    // <e> NFC_NDEF_RECORD_PARSER_ENABLED - nfc_ndef_record_parser - NFC NDEF Record parser module
    //==========================================================
    #ifndef NFC_NDEF_RECORD_PARSER_ENABLED
    #define NFC_NDEF_RECORD_PARSER_ENABLED 1
    #endif
    // <e> NFC_NDEF_RECORD_PARSER_LOG_ENABLED - Enables logging in the module.
    //==========================================================
    #ifndef NFC_NDEF_RECORD_PARSER_LOG_ENABLED
    #define NFC_NDEF_RECORD_PARSER_LOG_ENABLED 1
    #endif
    // <o> NFC_NDEF_RECORD_PARSER_LOG_LEVEL  - Default Severity level
     
    // <0=> Off 
    // <1=> Error 
    // <2=> Warning 
    // <3=> Info 
    // <4=> Debug 
    
    #ifndef NFC_NDEF_RECORD_PARSER_LOG_LEVEL
    #define NFC_NDEF_RECORD_PARSER_LOG_LEVEL 3
    #endif
    
    // <o> NFC_NDEF_RECORD_PARSER_INFO_COLOR  - ANSI escape code prefix.
     
    // <0=> Default 
    // <1=> Black 
    // <2=> Red 
    // <3=> Green 
    // <4=> Yellow 
    // <5=> Blue 
    // <6=> Magenta 
    // <7=> Cyan 
    // <8=> White 
    
    #ifndef NFC_NDEF_RECORD_PARSER_INFO_COLOR
    #define NFC_NDEF_RECORD_PARSER_INFO_COLOR 0
    #endif
    
    

    With this, I have no more troubles with the includes. Now, I have issues with the use of the parser but i will make an other ticket if necessary.

Children
No Data
Related