From 2a9c94e9ac8f50c228bef1d280efc75361dc794e Mon Sep 17 00:00:00 2001 From: Mihail Stoyanov Date: Fri, 31 Jan 2014 16:57:43 +0000 Subject: [PATCH] Fixed nRF51822 class name (always use upper case) --- workspace_tools/targets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace_tools/targets.py b/workspace_tools/targets.py index 9f16675a6c..37662a83ab 100644 --- a/workspace_tools/targets.py +++ b/workspace_tools/targets.py @@ -360,7 +360,7 @@ class LPC11U35_401(Target): self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"] -class nRF51822(Target): +class NRF51822(Target): def __init__(self): Target.__init__(self) @@ -406,7 +406,7 @@ TARGETS = [ LPC1114(), LPC11C24(), LPC11U35_401(), - nRF51822(), + NRF51822(), C027() ]