164 views
in System Integration by
Hello,

I'm working with iMXRT1170 and embedded wizard. for integrating the device with GUI I use the DeviceDriver. how can I add my own application file to the project? When I want to add a function to DeviceDriver the compiler makes a warning (the function declared implicitly) and there is no header file for DeviceDriver to add the function prototype.

1 Answer

0 votes
by

Hello,

you have to add a

#include "Your_API_Header.h"

into the DeviceDriver.c file, so that the compiler is informed about the function prototypes of your API.

Furthermore, please ensure that your API (C files or library) is also added to the makefile or projectfile so that the linker can add it to the binary.

Best regards,

Manfred.

Ask Embedded Wizard

Welcome to the question and answer site for Embedded Wizard users and UI developers.

Ask your question and receive answers from the Embedded Wizard support team or from other members of the community!

Embedded Wizard Website | Privacy Policy | Imprint

...