This file contains hidden or 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
#include <zephyr/kernel.h> | |
#include <hal/nrf_grtc.h> | |
/* To use the nRF54L15's GRTC PWM output (P0.03 only) | |
* | |
* Requires enabling: | |
* CONFIG_NRFX_GRTC=y | |
*/ | |
int main(void) |
This file contains hidden or 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
diff --git a/drivers/display/ssd16xx.c b/drivers/display/ssd16xx.c | |
index 7dfaa121177..d6229c34b88 100644 | |
--- a/drivers/display/ssd16xx.c | |
+++ b/drivers/display/ssd16xx.c | |
@@ -16,6 +16,8 @@ LOG_MODULE_REGISTER(ssd16xx); | |
#include <zephyr/init.h> | |
#include <zephyr/drivers/gpio.h> | |
#include <zephyr/drivers/mipi_dbi.h> | |
+#include <zephyr/pm/device.h> | |
+#include <zephyr/pm/device_runtime.h> |
This file contains hidden or 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
--- /opt/ncs/ncs-v3.0/nrf/applications/serial_lte_modem/src/slm_at_socket.c 2025-04-15 11:53:22.452023051 -0400 | |
+++ src/slm_at_socket.c 2025-05-28 13:00:00.173393697 -0400 | |
@@ -1656,6 +1656,224 @@ | |
return err; | |
} | |
+/* Begin app specific commands */ | |
+ | |
+SLM_AT_CMD_CUSTOM(qiopen, "AT+QIOPEN", handle_qiopen_socket); | |
+static int handle_qiopen_socket(enum at_parser_cmd_type cmd_type, struct at_parser *parser, |
OlderNewer