generated from circuitdojo/zephyr-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:umts/embedded-departure-board into …
…stop_414
- Loading branch information
Showing
26 changed files
with
337 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ Language: Cpp | |
BasedOnStyle: Google | ||
|
||
AlignAfterOpenBracket: BlockIndent | ||
# ColumnLimit: 100 | ||
ColumnLimit: 100 | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
VERSION_MAJOR = 0 | ||
VERSION_MINOR = 6 | ||
VERSION_MINOR = 7 | ||
PATCHLEVEL = 1 | ||
VERSION_TWEAK = 0 | ||
EXTRAVERSION = stable |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Stop settings | ||
CONFIG_STOP_ID="414" | ||
CONFIG_STOP_MAX_ROUTES=7 | ||
CONFIG_ROUTE_MAX_DEPARTURES=6 | ||
CONFIG_UPDATE_STOP_FREQUENCY_SECONDS=30 | ||
|
||
# Display settings | ||
CONFIG_NUMBER_OF_DISPLAY_BOXES=6 | ||
# Adjust DISPLAY_BOXES display settings in app/src/update_stop.h | ||
|
||
# Maximum amount of time the system can remain inactive before it resets. | ||
# Must be larger than CONFIG_UPDATE_STOP_FREQUENCY_SECONDS | ||
CONFIG_MAX_TIME_INACTIVE_BEFORE_RESET_MS=60000 | ||
|
||
# Stop data request settings | ||
CONFIG_STOP_REQUEST_INFOPOINT=y | ||
CONFIG_STOP_REQUEST_HOSTNAME="bustracker.pvta.com" | ||
# CONFIG_STOP_REQUEST_HOSTNAME="pvta.jes.contact" | ||
CONFIG_STOP_REQUEST_PATH="/InfoPoint/rest/SignageStopDepartures/GetSignageDeparturesByStopId?stopId=414" | ||
# CONFIG_STOP_REQUEST_PATH="/stop/414" | ||
|
||
# Defines the max size for JSON response body receive buffer. | ||
# Actual size required varies quite a bit depending on how many routes | ||
# are currently running for a given stop. | ||
CONFIG_STOP_JSON_BUF_SIZE=20480 | ||
|
||
# NTP settings | ||
CONFIG_PRIMARY_NTP_SERVER="time.nist.gov" | ||
CONFIG_FALLBACK_NTP_SERVER="us.pool.ntp.org" | ||
# The NIST time servers should never be queried more frequently than once every 4 seconds. | ||
CONFIG_NTP_REQUEST_TIMEOUT_MS=4010 | ||
CONFIG_NTP_FETCH_RETRY_COUNT=2 | ||
|
||
# OTA DFU settings | ||
CONFIG_OTA_HOSTNAME="pvta.jes.contact" | ||
CONFIG_OTA_PATH="/firmware" | ||
|
||
# Set to 'y' to enable I2C ambient light sensor | ||
CONFIG_LIGHT_SENSOR=y | ||
|
||
# Set to 'y' to run visual display tests | ||
CONFIG_LED_DISPLAY_TEST=n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.