Skip to content

Instantly share code, notes, and snippets.

View pr1metine's full-sized avatar
🦅
Rahhhhhh

Thanh pr1metine

🦅
Rahhhhhh
  • Airbus Defense and Space GmbH
  • FDH
  • 15:16 (UTC +02:00)
  • X @pr1metine
View GitHub Profile
@pr1metine
pr1metine / processing.yml
Last active May 6, 2020 13:37
An easy way to add CI/CD to your processing project. Be sure to set REPO_NAME_PATH in line 21 first.
name: Processing
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
@pr1metine
pr1metine / Makefile
Created February 12, 2021 07:51
Simple Makefile for pdflatex
all: open
# Customize these variables to your project
FILENAME:=
LOCAL_DESTINATION:=
REMOTE_DESTINATION:=
$(FILENAME).pdf: $(FILENAME).tex
pdflatex $^
@pr1metine
pr1metine / ti_to_svd.py
Created November 4, 2023 14:48 — forked from Sauci/ti_to_svd.py
utility script to convert target description files from TI format into svd format
"""
@file ti_to_svd.py
@author Guillaume Sottas
@date 25/09/2019
This script can be used to convert the target description files from Texas Instruments into more
widely supported .svd file.
Before using this script, make sure Code Composer Studio is installed (available for MacOS, Linux and Windows).
For example, if a .svd file should be generated for target tms570lc4357zwt, invoke this script like
@pr1metine
pr1metine / main.cpp
Created May 14, 2024 08:41
HALCoGen Hercules + RODOS
/* USER CODE BEGIN (0) */
/* USER CODE END */
/* Include Files */
#include "HL_sys_common.h"
/* USER CODE BEGIN (1) */
#include "HL_gio.h"
This file has been truncated, but you can view the full file.
[main] Building folder: llvm-mos check-clang
[build] Starting build
[proc] Executing command: /opt/homebrew/bin/cmake --build /Users/pr1metine/projects/llvm/llvm-mos/build --config Debug --target check-clang --
[build] [1/1 0% :: 0.355] Running the Clang regression tests
[build] llvm-lit: /Users/pr1metine/projects/llvm/llvm-mos/llvm/utils/lit/lit/llvm/config.py:509: note: using clang: /Users/pr1metine/projects/llvm/llvm-mos/build/bin/clang
[build] llvm-lit: /Users/pr1metine/projects/llvm/llvm-mos/llvm/utils/lit/lit/llvm/config.py:509: note: using ld.lld: /Users/pr1metine/projects/llvm/llvm-mos/build/bin/ld.lld
[build] llvm-lit: /Users/pr1metine/projects/llvm/llvm-mos/llvm/utils/lit/lit/llvm/config.py:509: note: using lld-link: /Users/pr1metine/projects/llvm/llvm-mos/build/bin/lld-link
[build] llvm-lit: /Users/pr1metine/projects/llvm/llvm-mos/llvm/utils/lit/lit/llvm/config.py:509: note: using ld64.lld: /Users/pr1metine/projects/llvm/llvm-mos/build/bin/ld64.lld
[build] llvm-lit: /Users/pr1metine/projects/llvm