firmware

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 15, 2026 License: MIT Imports: 9 Imported by: 0

Documentation

Overview

Package firmware converts user-supplied firmware artifacts (ELF, Intel HEX, raw binary) into the flashable bytes the pod expects for a given board.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Format

type Format int
const (
	FormatRaw Format = iota // .bin / .uf2 — passed through unchanged
	FormatELF
	FormatIHEX
)

func (Format) String

func (f Format) String() string

type Info

type Info struct {
	Format   Format
	BaseAddr uint64 // resolved load base (ELF/HEX only)
	Size     int    // output byte count
}

Info describes what Normalize did.

func Normalize

func Normalize(data []byte, boardType string) ([]byte, Info, error)

Normalize converts firmware into the flashable image the pod expects for boardType. ELF and Intel HEX are converted to raw bin for STM32 boards; every other input passes through unchanged.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL