aboutsummaryrefslogtreecommitdiffstats
path: root/docs/0_Getting_Started
AgeCommit message (Collapse)AuthorFilesLines
2021-02-03Adapt instructions for VirtualBoxJan-Simon Möller1-1/+8
This is due to https://www.virtualbox.org/ticket/19873?cversion=0&cnum_hist=4 Adapt the documentation to deal with the resolution issue. Bug-AGL: SPEC-3731 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org> Change-Id: I6ff56593d1064d44dc5ab972d8e3475003a91f36 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/25988
2021-02-03Generic updates to the documentation matching master and koiJan-Simon Möller6-42/+43
Mostly updates to the yocto links or adding the refhw. Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org> Change-Id: Ib28bd5de72e7be8b2a2605e8149143fb946a7b69 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/25986
2021-01-26Document AGL Reference Hardwarekoi_10.93.0koi/10.93.010.93.0Scott Murray1-1/+26
Add AGL Reference Hardware configuration to the Renesas board documentation. Bug-AGL: SPEC-3708 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: I48c852ec2ee880cae121a7d3368f5a127bcf2d9b Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/25957 Reviewed-by: Fr�d�ric Marec <frederic.marec@iot.bzh> Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
2021-01-26Fix formatting issues in Renesas board markdownScott Murray1-402/+320
Updated theme to windmill Using Mkdocs static site generator Deployed on readthedocs Signed-off-by: growupboron <shankhoghosh123@gmail.com> Change-Id: If62eaaea1855c91b64f687900f54eba6bc1caee8 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/25236 Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
ass="p">; parameter.insert("position", "car"); parameter.insert("latitude", lat); parameter.insert("longitude", lon); parameter.insert("direction", drc); parameter.insert("distance", dst); nmsg->createRequest("broadcast_position", parameter); m_mloop->sendMessage(nmsg); delete nmsg; } void Navigation::broadcastRouteInfo(double lat, double lon, double route_lat, double route_lon) { NavigationMessage *nmsg = new NavigationMessage(); QJsonObject parameter; parameter.insert("position", "route"); parameter.insert("latitude", lat); parameter.insert("longitude", lon); parameter.insert("route_latitude", route_lat); parameter.insert("route_longitude", route_lon); nmsg->createRequest("broadcast_position", parameter); m_mloop->sendMessage(nmsg); delete nmsg; } void Navigation::broadcastStatus(QString state) { NavigationMessage *nmsg = new NavigationMessage(); QJsonObject parameter; parameter.insert("state", state); nmsg->createRequest("broadcast_status", parameter); m_mloop->sendMessage(nmsg); delete nmsg; } void Navigation::onConnected() { QStringListIterator eventIterator(events); NavigationMessage *nmsg; while (eventIterator.hasNext()) { nmsg = new NavigationMessage(); QJsonObject parameter; parameter.insert("value", eventIterator.next()); nmsg->createRequest("subscribe", parameter); m_mloop->sendMessage(nmsg); delete nmsg; } } void Navigation::onDisconnected() { QStringListIterator eventIterator(events); NavigationMessage *nmsg; while (eventIterator.hasNext()) { nmsg = new NavigationMessage(); QJsonObject parameter; parameter.insert("value", eventIterator.next()); nmsg->createRequest("unsubscribe", parameter); m_mloop->sendMessage(nmsg); delete nmsg; } } void Navigation::onMessageReceived(MessageType type, Message *msg) { if (type == NavigationEventMessage) { NavigationMessage *tmsg = qobject_cast<NavigationMessage*>(msg); if (tmsg->isPositionEvent()) { emit positionEvent(tmsg->eventData().toVariantMap()); } if (tmsg->isStatusEvent()) { emit statusEvent(tmsg->eventData().toVariantMap()); } if (tmsg->isWaypointsEvent()) { emit waypointsEvent(tmsg->eventData().toVariantMap()); } } msg->deleteLater(); }