From 68ec9f41191840c242b598abf23d05a206b2b1ce Mon Sep 17 00:00:00 2001 From: Eugene Shamaev Date: Fri, 9 Mar 2018 17:34:38 +0200 Subject: [PATCH] Tools: add CAN bus declaration for the intel aero board --- Tools/ardupilotwaf/boards.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tools/ardupilotwaf/boards.py b/Tools/ardupilotwaf/boards.py index 686f7e0755..506e939fd7 100644 --- a/Tools/ardupilotwaf/boards.py +++ b/Tools/ardupilotwaf/boards.py @@ -621,6 +621,9 @@ class pxfmini(linux): ) class aero(linux): + def __init__(self): + self.with_uavcan = True + def configure_env(self, cfg, env): super(aero, self).configure_env(cfg, env)