Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/electro/hd44780-buf/commit/277ec54b546ec4ed35ce2d8980f33e9f4c0517fc?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
src/lcdbuf.h
@ -94,12 +94,12 @@ void LcdBuffer_Write(struct LcdBuffer *self, lcdbuf_pos_t row, lcdbuf_pos_t col,
/* Callbacks - need to be implemented by the application! */
/** Clear the entire screen (CGRAM can be left unchanged, but they will be written anew if needed) */
void LcdBuffer_IO_Clear ( ) ;
extern void LcdBuffer_IO_Clear ( ) ;
/** Write character data at position */
void LcdBuffer_IO_WriteAt ( lcdbuf_pos_t row , lcdbuf_pos_t col , const uint8_t * buf , lcdbuf_count_t len ) ;
extern void LcdBuffer_IO_WriteAt ( lcdbuf_pos_t row , lcdbuf_pos_t col , const uint8_t * buf , lcdbuf_count_t len ) ;
/** Write CGRAM data. Data is always 8 bytes long. */
void LcdBuffer_IO_WriteCGRAM ( uint8_t position , const uint8_t * data ) ;
extern void LcdBuffer_IO_WriteCGRAM ( uint8_t position , const uint8_t * data ) ;
# endif //HD44780UTF_LCDBUF_H