FreeRTOS-Kernel/FreeRTOS-Plus/Source/WolfSSL/mqx/wolfssl_client/Sources/main.h
TakayukiMatsuo 94aa31c3cb
Update wolfSSL to the latest version(v.4.4.0) (#186)
* deleted old version wolfSSL before updating

* updated wolfSSL to the latest version(v4.4.0)

* updated wolfSSL to the latest version(v4.4.0)

* added macros for timing resistance

Co-authored-by: RichardBarry <3073890+RichardBarry@users.noreply.github.com>
Co-authored-by: Ming Yue <mingyue86010@gmail.com>
2020-08-07 15:58:14 -07:00

60 lines
1.3 KiB
C

/* main.h */
#ifndef __main_h_
#define __main_h_
#include <mqx.h>
#include <bsp.h>
#include <mfs.h>
#include <fio.h>
#include <rtcs.h>
#include <ipcfg.h>
#include <sdcard.h>
#include <spi.h>
#include <part_mgr.h>
#include <wolfssl/ssl.h>
#define MAIN_TASK 1
extern void Main_task(uint32_t);
extern void setup_ethernet(void);
extern void setup_clock(void);
extern void client_test(void);
/* cert file locations */
static const char* caCert = "a:\\certs\\ca-cert.pem";
static const char* clientCert = "a:\\certs\\client-cert.pem";
static const char* clientKey = "a:\\certs\\client-key.pem";
static inline void err_sys(const char* msg)
{
printf("wolfssl error: %s\n", msg);
if (msg)
_mqx_exit(1);
}
/* PPP device must be set manually and
* must be different from the default IO channel (BSP_DEFAULT_IO_CHANNEL)
*/
#define PPP_DEVICE "ittyb:"
/*
* Define PPP_DEVICE_DUN only when using PPP to communicate
* to Win9x Dial-Up Networking over a null-modem
* This is ignored if PPP_DEVICE is not #define'd
*/
#define PPP_DEVICE_DUN 1
#ifndef ENET_IPADDR
#define ENET_IPADDR IPADDR(192,168,1,155)
#endif
#ifndef ENET_IPMASK
#define ENET_IPMASK IPADDR(255,255,255,0)
#endif
#define GATE_IPADDR IPADDR(192,168,1,1)
#endif /* __main_h_ */