Skip to content

Commit

Permalink
dragonpilot beta3
Browse files Browse the repository at this point in the history
date: 2024-07-13T18:45:35
commit: c25d768
  • Loading branch information
dragonpilot authored and Comma Device committed Jul 13, 2024
1 parent 0094c9a commit cbd22ec
Show file tree
Hide file tree
Showing 228 changed files with 13,057 additions and 2,790 deletions.
Empty file added .overlay_init
Empty file.
8 changes: 8 additions & 0 deletions CHANGELOGS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
dragonpilot 0.9.8
=======================
* Up to comma.ai openpilot master branch commit 01c2174d5968266b87f1d1fecefce5affaeaa624 (2024-07-02)
* DP HIGHLIGHT:
* (TESTING) Tē-Tôo / Map Module
* Road Name Display (Online using OSM)
* Speed Camera Warning (Online using OSM: Untested)
* Speed Camera Warning (Taiwan, Offline)
* Dynamic End-to-End w/ Toggleable Road Condition Detection.
* Device Auto Shutdown Toggle.
* Device Audible Alert Mode Toggle.

dragonpilot [2024.07.01]
=======================
Expand Down
Binary file modified body/board/obj/body.bin
Binary file not shown.
Binary file modified body/board/obj/body.bin.signed
Binary file not shown.
Binary file modified body/board/obj/body.elf
Binary file not shown.
Binary file modified body/board/obj/bootstub.body.bin
Binary file not shown.
Binary file modified body/board/obj/bootstub.body.elf
Binary file not shown.
2 changes: 1 addition & 1 deletion body/board/obj/gitversion.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const uint8_t gitversion[8] = "3c873995";
const uint8_t gitversion[8] = "3a83aa9c";
28 changes: 27 additions & 1 deletion cereal/custom.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,33 @@ enum LaneChangeAssistMode {
auto @3;
}

struct CustomReserved2 @0xf35cc4560bbf6ec2 {
struct TeToo @0xf35cc4560bbf6ec2 {
lat @0 :Float32;
lon @1 :Float32;
bearing @2 :Float32;
name @3 :Text;
maxspeed @4 :Float32;
tags @5 :Text;

updatingData @6 :Bool;
nearestFeatures @7 :List(Feature);

struct Feature {
id @0 :Text;
type @1 :FeatureType;
lat @2 :Float32;
lon @3 :Float32;
bearing @4 :Float32;
distance @5 :Float32;
tags @6 :Text;
probability @7 :Float32;
}

enum FeatureType {
trafficSignal @0;
speedCamera @1;
}

}

struct CustomReserved3 @0xda96579883444c35 {
Expand Down
Loading

0 comments on commit cbd22ec

Please sign in to comment.