ardupilotwaf: Disable exceptions for UAVCAN on linux boards

This commit is contained in:
Alexey Bulatov 2017-06-06 17:13:49 +03:00 committed by Tom Pittenger
parent 0998ac102b
commit e16ac3da23
1 changed files with 3 additions and 0 deletions

View File

@ -427,6 +427,9 @@ class linux(Board):
'AP_HAL_Linux',
]
if self.with_uavcan:
cfg.define('UAVCAN_EXCEPTIONS', 0)
def build(self, bld):
super(linux, self).build(bld)
if bld.options.upload: