SeanAB
Occasional Contributor
3 years agoWarning: Open not implemented
Quartus Prime Lite Ver 21.1.0 Build 842 10/21/21 - Windows 10 Host system
Eclipse Mars.2 rel 4.5.2
Trying to access a uart port via HAL API calls. The application is based on the hello world small template. The following code attempt to open to get the file pointer integer.
int fp_uart_0;
fp_uart_0 = ALT_OPEN(UART_0_NAME,2);
When I compile the program, I get the following warning:
hello_world_small.c:96: warning: warning: open is not implemented and will always fail
When I step through the code, it does fail to get a value. I see the wrapper for ALT_OPEN for open(). Is there something missing in Eclipse library?