Type | Status | Location | Compatible |
---|---|---|---|
adc | disabled | SoC | espressif,esp32-adc |
base | okay | SoC | zephyr,memory-region |
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
#!/usr/bin/env python3 | |
import os | |
import yaml | |
import sys | |
import argparse | |
from pathlib import Path | |
import statistics | |
import re |
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
find . -type f -exec grep -l "zephyr:board::" {} \; \ | |
| xargs grep -L "zephyr:board-supported-hw" \ | |
| xargs grep -l "Supported Features" \ | |
| while IFS= read -r file; do | |
grep -n "Supported Features" "$file" | cut -d: -f1 | while IFS= read -r line; do | |
echo "${file}:${line}" | |
done | |
done | xargs code -g |
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
# SPDX-License-Identifier: Apache-2.0 | |
cmake_minimum_required(VERSION 3.20.0) | |
# find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) | |
find_package(Zephyr COMPONENTS FindZephyr-sdk zephyr_default yaml pre_dt dts REQUIRED HINTS $ENV{ZEPHYR_BASE}) | |
project(hello_world) |
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
#!/bin/bash | |
# Configuration | |
#GOOD_COMMIT="v4.0.0" | |
GOOD_COMMIT="v4.0.0" | |
# Tests to exclude (space-separated list of test names) | |
# Example: EXCLUDED_TESTS="drivers.adc kernel.common" | |
EXCLUDED_TESTS="" |
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
gh pr list --state open --json number,title,url,statusCheckRollup --limit 50 -S "status:failure" \ | |
| jq -r ' | |
.[] | | |
. as $pr | | |
[ $pr.statusCheckRollup[]? | | |
select( | |
.__typename == "CheckRun" and | |
(.name | contains("Run compliance checks")) and | |
.conclusion == "FAILURE" | |
) |
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
#!/usr/bin/env python3 | |
import subprocess | |
import csv | |
from collections import defaultdict | |
from datetime import datetime | |
def get_contributor_commits(): | |
try: | |
# Get all commits with commit date and author, sorted by oldest first |
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
/dts-v1/; | |
/* node defined in ../../dts/common/skeleton.dtsi:9 */ | |
/ { | |
#address-cells = < 0x1 >; /* in ../../dts/common/skeleton.dtsi:10 */ | |
#size-cells = < 0x1 >; /* in ../../dts/common/skeleton.dtsi:11 */ | |
model = "reel board"; /* in ../../dts/common/skeleton.dtsi:14 */ | |
compatible = "phytec,reel_board"; /* in ../../dts/common/skeleton.dtsi:15 */ |
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
bogus ReSructuredText bullet/ordered lists | |
^[^-][A-Za-z].*\n\*.*\n\*.*\n | |
^[^-][A-Za-z].*\n-.*\n\*.*\n | |
^[^-][A-Za-z].*\n\#.*\n\*.*\n |
NewerOlder