Skip to content

Instantly share code, notes, and snippets.

let msg = aprs::Packet::Message {
destination: "AD8IZ-7".parse().unwrap(),
text: "Hello, world!".into(),
number: None,
};
let packet = ax25::Packet {
destination: "APZADZ".parse().unwrap(),
source: "AD8IZ-10".parse().unwrap(),
path: (&["WIDE1-1".parse().unwrap(), "WIDE2-1".parse().unwrap()] as &[_])
import hashlib
import os
import struct
class Sha1:
def __init__(self):
self.state = [
0x67452301,
0xEFCDAB89,
0x98BADCFE,
let eop =
frameshift::provider::CelestrakProvider::from_csv(std::fs::File::open("EOP-All.csv")?)?;
println!("J2000 = {}", frameshift::time::epoch::J2000.to_tai());
println!("J2000 = {}", frameshift::time::epoch::J2000.to_tt());
println!(
"J2000 = {}",
frameshift::time::epoch::J2000
.to_tai()
.to_utc_with(&eop)
fn main() -> anyhow::Result<()> {
let lines = vec![
"ISS (ZARYA)",
"1 25544U 98067A 24285.74177330 .00036177 00000-0 64514-3 0 9990",
"2 25544 51.6390 98.0883 0008472 63.6655 27.1997 15.49693494476628",
];
let home = satkit::ITRFCoord::from_geodetic_deg(0.0, 0.0, 268.9);
// parse TLE
@agrif
agrif / rv32i.py
Created September 23, 2024 05:08
import risky.test
class LUI(risky.test.UnitTest):
PROGRAM = """
lui a0, 1
one:
lui a1, 0xfffff
fs:
@agrif
agrif / test.py
Created September 22, 2024 23:55
class LUI(UnitTest):
PROGRAM = """
lui a0, 1
one:
lui a1, 0xfffff
fs:
lui a2, 0xabcde
letters:
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
extern void busy_loop(void);
extern volatile uint32_t LEDS;
extern volatile struct {
struct {
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdio.h>
extern void busy_loop(void);
extern volatile uint32_t LEDS;
extern volatile struct {
#include <stdint.h>
#include <stdlib.h>
volatile uint32_t* LEDS = 0x10000;
extern void busy_loop(void);
#define DATA_AMOUNT 128
uint8_t big_honking_data[DATA_AMOUNT] = {0};
#include <stdint.h>
uint32_t* LEDS = 0x10000;
extern void wait(void);
void main(void) {
while (1) {
*LEDS += 1;
wait();