From 208a20fb77d378923aa4be2c1a20098925070723 Mon Sep 17 00:00:00 2001 From: cs-xm Date: Tue, 12 Dec 2023 17:35:43 +0000 Subject: [PATCH] Move to devzone wifi, change ip, ssid and password IT have put together a more robust solution to a perminent test wifi for people to use. This will replace the raspbery pi AP. --- Jenkinsfile | 4 ++-- test/rtos_drivers/wifi/src/FreeRTOSIPConfig.h | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7e3daaf5..6334cce6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,8 +26,8 @@ pipeline { VENV_DIRNAME = ".venv" BUILD_DIRNAME = "dist" RTOS_TEST_RIG_TARGET = "XCORE-AI-EXPLORER" - LOCAL_WIFI_SSID = credentials('bristol-office-test-ssid') - LOCAL_WIFI_PASS = credentials('bristol-office-test-wifi-password') + LOCAL_WIFI_SSID = credentials('bristol-office-development-wifi-ssid') + LOCAL_WIFI_PASS = credentials('bristol-office-development-wifi-password') } stages { stage('Build and Docs') { diff --git a/test/rtos_drivers/wifi/src/FreeRTOSIPConfig.h b/test/rtos_drivers/wifi/src/FreeRTOSIPConfig.h index b331b3a7..36d87eb9 100644 --- a/test/rtos_drivers/wifi/src/FreeRTOSIPConfig.h +++ b/test/rtos_drivers/wifi/src/FreeRTOSIPConfig.h @@ -46,9 +46,9 @@ #endif /* User defined network parameters */ -#define IPconfig_IP_ADDR_OCTET_0 192 -#define IPconfig_IP_ADDR_OCTET_1 168 -#define IPconfig_IP_ADDR_OCTET_2 5 +#define IPconfig_IP_ADDR_OCTET_0 10 +#define IPconfig_IP_ADDR_OCTET_1 0 +#define IPconfig_IP_ADDR_OCTET_2 201 #define IPconfig_IP_ADDR_OCTET_3 3 #define IPconfig_NET_MASK_OCTET_0 255 @@ -56,9 +56,9 @@ #define IPconfig_NET_MASK_OCTET_2 255 #define IPconfig_NET_MASK_OCTET_3 0 -#define IPconfig_GATEWAY_OCTET_0 192 -#define IPconfig_GATEWAY_OCTET_1 168 -#define IPconfig_GATEWAY_OCTET_2 5 +#define IPconfig_GATEWAY_OCTET_0 10 +#define IPconfig_GATEWAY_OCTET_1 0 +#define IPconfig_GATEWAY_OCTET_2 201 #define IPconfig_GATEWAY_OCTET_3 1 #define IPconfig_DNS_SERVER_OCTET_0 8