remoteid is an ASTM F3411 / FAA Remote-ID broadcast-message framing engine for uncrewed aircraft (drones) — the regulatory “digital license plate”… It is delivered as a licensable soft-IP block engineered as an ASIL-B Safety Element out of Context — not just RTL, but the complete functional-safety work package needed to carry it into an ISO 26262 program:
remote_id is an ASTM F3411 / FAA Remote-ID broadcast-message framing engine for uncrewed aircraft (drones) — the regulatory “digital license plate” broadcaster.
ASTM F3411, FAA Remote ID (14 CFR Part 89)
ASIL-B (SEooC) · SPFM 91.00% · LFM 89.01% · PASS
ISO 26262:2018 · FMEDA available · Safety Manual included
| Offset | Register | Description |
|---|---|---|
0x00 | CTRL | RW [0]=EN [1]=GO(self-clear, force one broadcast) [2]=WD_EN |
0x04 | STATUS | RO [0]=BUSY [1]=FRAME_RDY [3:2]=fsm_state [6:4]=msg_sel [7]=ERR_VALID [11:8]=ERR_CODE [23:16]=byte_count |
0x08 | MSG_HDR | RW [3:0]=protocol_version [7:4]=message_type(active) [12:8]=ua_type [16]=id_type [21:17]=msg_qty(pack) [28:24]=uas_i… |
0x0C | BASIC | RW [3:0]=op_status [7:4]=loc_flags (location body[0] fields) |
0x10 | LAT | RW [31:0] latitude (signed, degrees * 1e7) |
…20 more registers — see datasheet for the full table.
// Minimal instantiation
remote_id #(
.ADDR_W(6)
) u_remote_id (
.clk (clk),
.rst_n (rst_n),
// APB4
.p_paddr (paddr),
.p_psel (psel),
.p_penable (penable),
.p_pwrite (pwrite),
.p_pwdata (pwdata),
.p_prdata (prdata),
.p_pready (pready),
// Safety
.err_clear (1'b0),
.err_valid (err_valid),
.err_code (err_code)
);Configure via the CTRL register after reset to enable the IP and set operating parameters. Monitor err_valid / err_code for any safety faults reported by the built-in safety monitor.
Typically deployed in UAV flight controllers and robotics platforms operating under a functional-safety mandate.
Pricing, the per-IP FMEDA, safety manual, and RTL data room are shared under a mutual NDA.
Figures are pre-silicon engineering-grade estimates for a Safety Element out of Context (SEooC); final ASIL sign-off is the integrator’s, supported under NDA. FMEDA and Safety Manual available under NDA.
circuit-design.space · +1-971-357-1400 · sales@circuit-design.space