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
========== | |
VULKANINFO | |
========== | |
Vulkan Instance Version: 1.3.275 | |
Instance Extensions: count = 15 | |
=============================== | |
VK_EXT_debug_report : extension revision 10 |
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
U-Boot SPL 2024.10-ga3ba42f3d38e-dirty (Nov 13 2024 - 12:02:14 +0530) | |
DRAM:Testing ranks = 1, 32-bit bus | |
[*] offset = 3 | |
[*] offset = 3 | |
[*] offset = 9 | |
[*] offset = 11 | |
[*] offset = 25 | |
[*] FINAL voffset = 26 | |
ADDRMAP[0] = 0x00000013 | |
ADDRMAP[1] = 0x001f0707 |
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
U-Boot SPL 2024.10-gc5581d2a836f (Nov 13 2024 - 10:44:25 +0530) | |
DRAM:Testing ranks = 1, 32-bit bus | |
[*] offset = 3 | |
[*] offset = 3 | |
[*] offset = 9 | |
[*] offset = 11 | |
[*] offset = 25 | |
[*] FINAL voffset = 26 | |
ADDRMAP[0] = 0x00000013 | |
ADDRMAP[1] = 0x001f0707 |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# U-Boot 2024.10 Configuration | |
# | |
# | |
# Compiler: aarch64-none-linux-gnu-gcc (Arm GNU Toolchain 13.2.rel1 (Build arm-13.7)) 13.2.1 20231009 | |
# | |
CONFIG_CREATE_ARCH_SYMLINK=y | |
CONFIG_SUPPORT_LITTLE_ENDIAN=y |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# U-Boot 2024.10 Configuration | |
# | |
# | |
# Compiler: aarch64-none-linux-gnu-gcc (Arm GNU Toolchain 13.2.rel1 (Build arm-13.7)) 13.2.1 20231009 | |
# | |
CONFIG_CREATE_ARCH_SYMLINK=y | |
CONFIG_SUPPORT_LITTLE_ENDIAN=y |
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
\documentclass{article} | |
\usepackage{tikz} | |
\usetikzlibrary{positioning, arrows.meta} | |
\begin{document} | |
\begin{tikzpicture}[ | |
node distance=3cm and 3cm, | |
mynode/.style={circle, draw, text width=2.5cm, align=center, minimum height=2cm, fill=blue!20}, | |
myarrow/.style={->, >=Stealth}, |
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
@startuml | |
group Application and D-Bus Interaction | |
participant Application #LightBlue | |
participant "D-Bus" as DbusDaemon #LightYellow | |
participant "Bluez D-BUS Service" as BluezAdapter #LightGreen | |
end | |
Application -> DbusDaemon: D-Bus method call\n(org.freedesktop.DBus.Properties.Get) | |
activate Application |
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
@startuml | |
actor User | |
group Application and D-Bus Interaction | |
participant Application #LightBlue | |
participant "D-Bus" as DbusDaemon #LightYellow | |
participant "Bluez D-BUS Service" as BluezAdapter #LightGreen | |
end | |
User -> Application: Initiate read/write\n"Powered" property |
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
cmake_minimum_required(VERSION 3.13.1) | |
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) | |
project(nrf91-block) | |
target_sources(app PRIVATE src/main.c) |
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
/* | |
* Linumiz <[email protected]> | |
* mqtt_loop: subscribe to topic and loopbacks the message to publish topic | |
* | |
* gcc -I./lib -L./lib -DMQTT_TLS -o ./mqtt_loop ./mqtt_loop.c -lmosquitto | |
*/ | |
#include <errno.h> | |
#include <stdio.h> | |
#include <stdlib.h> |
NewerOlder