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 "gps.h" | |
HardwareSerial GPSSerial(1); | |
void gps::init() | |
{ | |
GPSSerial.begin(9600, SERIAL_8N1, GPS_TX, GPS_RX); | |
GPSSerial.setTimeout(2); | |
} |
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
job "mapd" { | |
datacenters = ["dc1"] | |
type = "service" | |
constraint { | |
operator = "distinct_hosts" | |
value = "true" | |
} | |
update { | |
max_parallel = 1 | |
min_healthy_time = "10s" |
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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: traefik | |
name: traefik | |
namespace: default | |
spec: | |
replicas: 1 | |
selector: |
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
apiVersion: apiextensions.k8s.io/v1beta1 | |
kind: CustomResourceDefinition | |
metadata: | |
name: ingressroutes.traefik.containo.us | |
spec: | |
group: traefik.containo.us | |
version: v1alpha1 | |
names: | |
kind: IngressRoute |
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
[ 3.636884] Internal error: SP/PC alignment exception: 8a000000 [#1] PREEMPT SMP | |
[ 3.636982] ------------[ cut here ]------------ | |
[ 3.637542] Modules linked in: | |
[ 3.637945] refcount_t: underflow; use-after-free. | |
[ 3.638215] Process swapper/0 (pid: 1, stack limit = 0x(____ptrval____)) | |
[ 3.638694] WARNING: CPU: 2 PID: 0 at lib/refcount.c:190 refcount_sub_and_test_checked+0x94/0xb0 | |
[ 3.639215] CPU: 1 PID: 1 Comm: swapper/0 Not tainted 5.1.0-1114-ayufan-g097e5be61be4 #ayufan | |
[ 3.639973] Modules linked in: | |
[ 3.640712] Hardware name: Rockchip RK3328 T9 (DT) | |
[ 3.640979] CPU: 2 PID: 0 Comm: swapper/2 Not tainted 5.1.0-1114-ayufan-g097e5be61be4 #ayufan |
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
# AArch64 multi-platform | |
# PKGBUILD Maintainer: Raanu <[email protected]> | |
# Kernel maintainer: Ayufan <[email protected]> | |
# The below variables get updated from external script when new builds are released | |
_kernver=4.4.167-1200-rockchip-ayufan-gb87a48aaf35f | |
_imagename=linux-image-4.4.167-1200-rockchip-ayufan-gb87a48aaf35f_4.4.167-1200-rockchip-ayufan_arm64.deb | |
_headersname=linux-headers-4.4.167-1200-rockchip-ayufan-gb87a48aaf35f_4.4.167-1200-rockchip-ayufan_arm64.deb | |
_releasetag=4.4.167-1200-rockchip-ayufan | |
_pkgver=4.4.167_1200 |
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
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: caddy-git-config | |
labels: | |
app: caddy-git | |
data: | |
Caddyfile: | | |
:80 |
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
readinessProbe: | |
exec: | |
command: ["/root/grpc_health_probe", "-addr=:6666"] | |
initialDelaySeconds: 1 | |
livenessProbe: | |
exec: | |
command: ["/root/grpc_health_probe", "-addr=:6666"] | |
initialDelaySeconds: 2 | |
imagePullPolicy: IfNotPresent |
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
--- | |
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: dashboard-ingress | |
namespace: kube-system | |
spec: | |
rules: | |
- host: dashboard.minikube | |
http: |
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
apiVersion: apps/v1beta2 | |
kind: Deployment | |
metadata: | |
name: ${NAME} | |
labels: | |
app: "${NAME}" | |
commit: "${VERSION}" | |
appgroup: "${PROJECT}" | |
deploydate: "${DATE}" | |
spec: |