apache / mynewt-newt

An OS to build, deploy and securely manage billions of devices
https://mynewt.apache.org/
Apache License 2.0
117 stars 96 forks source link

Generate mod log names #551

Closed kasjer closed 7 months ago

kasjer commented 8 months ago

This adds "name:" to syscfg.logs nodes. This is optional log name.

With this change newt tool also generates file: \<bsp>-logcfg.c that contains function: const char *logcfg_log_module_name(uint8_t id)

that can be used to get module name for generated mod logs.

If name is not present like in this example:

syscfg.logs:
    BMA400_LOG:
        module: MYNEWT_VAL(BMA400_LOG_MODULE)
        level: MYNEWT_VAL(BMA400_LOG_LVL)

module name will be taken from BMA400_LOG by cutting off trailing _LOG to make it BMA400

sjanc commented 7 months ago

@m-gorecki please have a look