Attention to Internet Explorer users: ROHM website does not recommend browsing in IE 11. Please use latest browser to ensure the best performance on ROHM website.
The following warning is issued when building the reference software with LCC-U16.../driver/inc/mcu.h:29:14: warning: non-portable path to file''; specified path differs in case from file name on disk [-Wnonportable-include-path]What should I do?
LCC-U16 is case sensitive for filenames. If the file name specified by #include and the actual file name are different in uppercase and lowercase, this warning is output.
Regarding the header file described in the reference software, the file name specified by #include in the device information header file is described in lowercase as shown in the example below, and the actual file name is in uppercase. Therefore, LCC-U16 is outputting a warning.
Example. #include
You can prevent the warning from being output by matching the file name in the #include description with the case of the actual header file name. (Before modification) #include (After modification) #include