Hi @Hoon
The function Lpi2c_Ip_MasterEndTransfer() is declared as static, which means the function's access level is restricted to the file where it is defined. As a result, its usage is limited to that file and it cannot be accessed from other source files including main.c.
Based on your description, the error appears to be caused by an attempt to call this static function from main.c, which is not allowed due to its restricted visibility. In contrast, the other functions you are using do not have the static keyword, which is why they are accessible from main.c.
BR, VaneB