Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.4
0.2.5
2 changes: 1 addition & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.2.4
version: 0.2.5
description: ESP32-S3 robotics control library
url: https://github.com/nfrproducts/probot-lib
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
"type": "git",
"url": "https://github.com/nfrproducts/probot-lib"
},
"version": "0.2.4"
"version": "0.2.5"
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=probot
version=0.2.4
version=0.2.5
author=Tuna Gül
maintainer=Tuna Gül <tunagul54@gmail.com>
sentence=ProBot Library for Robotics Competitions.
Expand Down
6 changes: 3 additions & 3 deletions src/driverstation/esp32s3/driver_station_esp32.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ static_assert(sizeof(PROBOT_WIFI_AP_SSID) - 1 <= 32, "PROBOT_WIFI_AP_SSID must b
static_assert(sizeof(PROBOT_WIFI_AP_SSID) - 1 <= 25, "PROBOT_WIFI_AP_SSID must be 25 characters or fewer when MAC suffix is enabled.");
#endif
#ifndef PROBOT_WIFI_AP_CHANNEL
#error "WiFi AP channel not provided. Define PROBOT_WIFI_AP_CHANNEL (1-11) before including probot.h."
#error "WiFi AP channel not provided. Define PROBOT_WIFI_AP_CHANNEL (1-13) before including probot.h."
#endif
static_assert(PROBOT_WIFI_AP_CHANNEL >= 1 && PROBOT_WIFI_AP_CHANNEL <= 11,
"PROBOT_WIFI_AP_CHANNEL must be between 1 and 11.");
static_assert(PROBOT_WIFI_AP_CHANNEL >= 1 && PROBOT_WIFI_AP_CHANNEL <= 13,
"PROBOT_WIFI_AP_CHANNEL must be between 1 and 13.");

namespace probot::driverstation::esp32 {
class DriverStation {
Expand Down