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
from typing import Optional, Union | |
import requests | |
from xml.etree import ElementTree | |
from collections import namedtuple | |
from datetime import datetime, date, tzinfo | |
from dateutil import tz | |
import re | |
import enum | |
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.16) | |
project(bbb_pru C CXX) | |
set(STACK_SIZE 0x100) | |
set(HEAP_SIZE 0x100) | |
set(CMAKE_C_COMPILER ${PRU_COMPILER_HOME}/bin/clpru) | |
set(CMAKE_CXX_COMPILER ${PRU_COMPILER_HOME}/bin/clpru) | |
set(CMAKE_LINKER ${PRU_COMPILER_HOME}/bin/lnkpru) | |
set(CMAKE_AR ${PRU_COMPILER_HOME}/bin/arpru) |
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.16.3) | |
project(cppefi C CXX) | |
if (NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY) | |
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin") | |
endif() | |
if (NOT CMAKE_LIBRARY_OUTPUT_DIRECTORY) | |
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") | |
endif() |
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
ARCH=x86_64 | |
OBJS=main.o | |
TARGET=main.efi | |
CC=gcc | |
EFI_INCLUDE_PATH=/usr/local/include/efi | |
EFI_INCLUDES=-I$(EFI_INCLUDE_PATH) -I$(EFI_INCLUDE_PATH)/$(ARCH) -I$(EFI_INCLUDE_PATH)/protocol |
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
ARCH=x86_64 | |
OBJS=main.o | |
TARGET=main.efi | |
CC=gcc | |
EFI_INCLUDE_PATH=/usr/local/include/efi | |
EFI_INCLUDES=-I$(EFI_INCLUDE_PATH) -I$(EFI_INCLUDE_PATH)/$(ARCH) -I$(EFI_INCLUDE_PATH)/protocol |
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
import java.util.concurrent.atomic.AtomicReference; | |
public class LockFreeQueue<T> { | |
private final AtomicReference<Node<T>> mHead; | |
private final AtomicReference<Node<T>> mLast; | |
public LockFreeQueue() { | |
Node<T> baseNode = new Node<>(null); | |
mHead = new AtomicReference<>(baseNode); |
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
#include <stdio.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <errno.h> | |
#include <dirent.h> | |
#include <linux/limits.h> | |
#include <regex.h> | |
#include <stdbool.h> | |
#include <stdlib.h> |
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
#include <stdio.h> | |
#include <string.h> | |
#include <errno.h> | |
#include <dirent.h> | |
#include <linux/limits.h> | |
#include <regex.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#define DATADIR "/sys/class/power_supply" |