Squashed commit of the following: commit 5f16309f629b9928d2134b85ae64af69bc3ebbcd Author: kuwoyuki <kuwoyuki@cock.li> Date: Sun Nov 24 22:55:15 2024 +0600 fix: Makefile, improve onewire retries commit 55496a3bda941b52ff349dc75c9c06eb5a37c07d Author: kuwoyuki <kuwoyuki@cock.li> Date: Mon Nov 18 00:41:18 2024 +0600 fix: make onewire validity less strict commit 3428a9bc9792508972ce3e7e4e35a64f047bca10 Author: kuwoyuki <kuwoyuki@cock.li> Date: Sun Nov 17 23:57:55 2024 +0600 chore: rm bins commit 1594e5ed430522b15466c8afa62ff7fb1b28947c Author: kuwoyuki <kuwoyuki@cock.li> Date: Sun Nov 17 23:32:01 2024 +0600 chore: unplatformiofy
39 lines
814 B
C
39 lines
814 B
C
#ifndef _LOOPBACK_H_
|
|
#define _LOOPBACK_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
/* Loopback test debug message printout enable */
|
|
#define _LOOPBACK_DEBUG_
|
|
|
|
/* DATA_BUF_SIZE define for Loopback example */
|
|
#ifndef DATA_BUF_SIZE
|
|
#define DATA_BUF_SIZE 2048
|
|
#endif
|
|
|
|
/************************/
|
|
/* Select LOOPBACK_MODE */
|
|
/************************/
|
|
#define LOOPBACK_MAIN_NOBLOCK 0
|
|
#define LOOPBACK_MODE LOOPBACK_MAIN_NOBLOCK
|
|
|
|
|
|
/* TCP server Loopback test example */
|
|
int32_t loopback_tcps(uint8_t sn, uint8_t* buf, uint16_t port);
|
|
|
|
/* TCP client Loopback test example */
|
|
int32_t loopback_tcpc(uint8_t sn, uint8_t* buf, uint8_t* destip, uint16_t destport);
|
|
|
|
/* UDP Loopback test example */
|
|
int32_t loopback_udps(uint8_t sn, uint8_t* buf, uint16_t port);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|