matlam1989
matlam1989
版本 implementation 'org.greenrobot:greendao:3.3.0' implementation 'io.github.yuweiguocn:GreenDaoUpgradeHelper:v2.2.1'
I use the src file in the library , no using the generated iso14229.c  ![Uploading 屏幕截图 2024-08-18 104624.png…]()
I change :  
I use iar for arm 9.2,and define ISOTP_BYTE_ORDER_LITTLE_ENDIAN in the ide.
more detail: const UDSISOTpCConfig_t tp_cfg = { .source_addr=0x7C0, .target_addr=0x7C8, .source_addr_func=0x7DF, .target_addr_func=UDS_TP_NOOP_ADDR, .isotp_user_send_can=send_can, .isotp_user_get_ms=millis, .isotp_user_debug=NULL, .user_data=NULL, }; void init() { assert(UDS_OK == UDSServerInit(&srv)); assert(UDS_OK == UDSISOTpCInit(&tp, &tp_cfg)); srv.tp = &tp.hdl; srv.fn...
Sorry, I didn't see the message. Now , I debug again,and find Program call relationship: ssize_t UDSTpSend(struct UDSTpHandle *hdl, const uint8_t *buf, ssize_t len, UDSSDU_t *info) ; ->static ssize_t tp_send(UDSTpHandle_t...
I use C++for development, and there are very few changes to the library files. IDE uses macro definitions such as:UDS_TP_ISOTP_C,ISOTP_BYTE_ORDER_LITTLE_ENDIAN. more detail: #include "elog.h" extern "C"{ #include "server.h" #include "isotp_c.h"...
I get it , and test the program on my computer after work. Thanks
I get it , and test the program on my computer after work. Thanks
Thanks for your reply.I followed the instructions for the SPI connection, and there was no problem with the WiFi communication under normal circumstances. When I was debugging the host, I...