1 /*
2  * Copyright (c) 2023 Nuvoton Technology Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_DRIVERS_ETHERNET_ETH_NUMAKER_PRIV_H_
8 #define ZEPHYR_DRIVERS_ETHERNET_ETH_NUMAKER_PRIV_H_
9 
10 #include <zephyr/types.h>
11 
12 #define NU_ETH_MAX_FLEN             (1518)
13 
14 #define NU_HWADDR_SIZE              (6)
15 
16 #define NU_ETH_MTU_SIZE              1500
17 
18 #endif /* ZEPHYR_DRIVERS_ETHERNET_ETH_NUMAKER_PRIV_H_ */
19