Skip to content

Commit

Permalink
Move to devzone wifi, change ip, ssid and password
Browse files Browse the repository at this point in the history
IT have put together a more robust solution to a perminent
test wifi for people to use. This will replace the raspbery pi AP.
  • Loading branch information
cs-xm committed Dec 12, 2023
1 parent 1056509 commit 208a20f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down
12 changes: 6 additions & 6 deletions test/rtos_drivers/wifi/src/FreeRTOSIPConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@
#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
#define IPconfig_NET_MASK_OCTET_1 255
#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
Expand Down

0 comments on commit 208a20f

Please sign in to comment.