fsfw-example-common/stm32h7/networking/udp_config.h

41 lines
886 B
C
Raw Normal View History

2021-07-12 21:21:03 +02:00
#ifndef COMMON_STM32_NUCLEO_NETWORKING_UDP_CONFIG_H_
#define COMMON_STM32_NUCLEO_NETWORKING_UDP_CONFIG_H_
#ifdef __cplusplus
extern "C" {
#endif
/* UDP local connection port. Client needs to bind to this port */
2022-05-05 20:55:28 +02:00
#define UDP_SERVER_PORT 7
2021-07-12 21:21:03 +02:00
2022-05-22 15:30:08 +02:00
/*Static DEST IP ADDRESS:
* DEST_IP_ADDR0.DEST_IP_ADDR1.DEST_IP_ADDR2.DEST_IP_ADDR3 */
2022-05-05 20:55:28 +02:00
#define DEST_IP_ADDR0 ((uint8_t)169U)
#define DEST_IP_ADDR1 ((uint8_t)254U)
#define DEST_IP_ADDR2 ((uint8_t)39U)
#define DEST_IP_ADDR3 ((uint8_t)2U)
2021-07-12 21:21:03 +02:00
/*Static IP ADDRESS*/
2022-05-05 20:55:28 +02:00
#define IP_ADDR0 169
#define IP_ADDR1 254
#define IP_ADDR2 1
#define IP_ADDR3 38
2021-07-12 21:21:03 +02:00
/*NETMASK*/
2022-05-05 20:55:28 +02:00
#define NETMASK_ADDR0 255
#define NETMASK_ADDR1 255
#define NETMASK_ADDR2 0
#define NETMASK_ADDR3 0
2021-07-12 21:21:03 +02:00
/*Gateway Address*/
2022-05-05 20:55:28 +02:00
#define GW_ADDR0 192
#define GW_ADDR1 168
#define GW_ADDR2 178
#define GW_ADDR3 1
2021-07-12 21:21:03 +02:00
#ifdef __cplusplus
}
#endif
#endif /* COMMON_STM32_NUCLEO_NETWORKING_UDP_CONFIG_H_ */