Skip to content

Commit 3890967

Browse files
VitaliyKurokhtinTrevelopment
authored andcommitted
Possible solution for left-hand roundabouts (#168)
I am super busy but I will try to update the binary tonight or tomorrow
1 parent 3a6b453 commit 3890967

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mazda/hud/hud.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ uint8_t turns[][3] = {
4949
{NaviTurns::DESTINATION_LEFT, NaviTurns::DESTINATION_RIGHT, NaviTurns::DESTINATION} //TURN_DESTINATION
5050
};
5151

52-
uint8_t roundabout(int32_t degrees){
52+
uint8_t roundabout(int32_t degrees, int32_t side){
5353
uint8_t nearest = (degrees + 15) / 30;
54-
uint8_t offset = 37; //+49 for Left hand drive?
54+
uint8_t offset = side == 0 ? 49 : 37;
5555
return(nearest + offset);
5656
}
5757

@@ -67,9 +67,9 @@ void hud_thread_func(std::condition_variable& quitcv, std::mutex& quitmutex, std
6767

6868
uint32_t diricon;
6969
if (navi_data->turn_event == 13) {
70-
diricon = roundabout(navi_data->turn_angle);
70+
diricon = roundabout(navi_data->turn_angle, navi_data->turn_side - 1);
7171
} else {
72-
int32_t turn_side = navi_data->turn_side-1; //Google starts at 1 for some reason...
72+
int32_t turn_side = navi_data->turn_side - 1; //Google starts at 1 for some reason...
7373
diricon = turns[navi_data->turn_event][turn_side];
7474
}
7575

0 commit comments

Comments
 (0)