wolfssl/mqx/cyassl_client/Sources/main.h

62 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 <sdcard_spi.h>
#include <spi.h>
#include <part_mgr.h>
#include <cyassl/ssl.h>
#define MAIN_TASK 1
extern void Main_task(uint_32);
extern void setup_ethernet(void);
extern void client_test(void);
/* cert file locations */
static const char* fileName = "a:\certs\\ca-cert.pem";
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("yassl 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(169,254,3,3)
#endif
#ifndef ENET_IPMASK
#define ENET_IPMASK IPADDR(255,255,0,0)
#endif
#define GATE_IPADDR IPADDR(192,168,0,1)
#endif /* __main_h_ */