Skip to content

Commit

Permalink
Merge pull request #225 from xmos/feature/enterprise_dev_wifi_test
Browse files Browse the repository at this point in the history
Move to devzone wifi, change ip, ssid and password
  • Loading branch information
cs-xm authored Jan 10, 2024
2 parents 1056509 + 208a20f commit 51cdb32
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 51cdb32

Please sign in to comment.