From 96b51a5ded447676d493be9721e4480065a5ae7e Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Fri, 11 Dec 2015 18:28:43 +0530 Subject: AVR ADC checked after some modifications --- src/c/hardware/avr/util/u16AVRSleeps.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/c/hardware/avr/util/u16AVRSleeps.c (limited to 'src/c/hardware/avr/util/u16AVRSleeps.c') diff --git a/src/c/hardware/avr/util/u16AVRSleeps.c b/src/c/hardware/avr/util/u16AVRSleeps.c new file mode 100644 index 00000000..4d81c964 --- /dev/null +++ b/src/c/hardware/avr/util/u16AVRSleeps.c @@ -0,0 +1,14 @@ +//Function to introduce specific delay in milliseconds +// +//Authors +// Siddhesh Wani +// + +#include "AVRUtil.h" + +uint8 u16AVRSleeps (uint16 delay) +{ + _delay_ms(delay); + + return 0; +} -- cgit From 9e506f48291533cba7b4c555b0d2e98f234bfbe3 Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Wed, 19 Apr 2017 14:28:34 +0530 Subject: Merged Ashish's work --- src/c/hardware/avr/util/u16AVRSleeps.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'src/c/hardware/avr/util/u16AVRSleeps.c') diff --git a/src/c/hardware/avr/util/u16AVRSleeps.c b/src/c/hardware/avr/util/u16AVRSleeps.c index 4d81c964..a6a7e508 100644 --- a/src/c/hardware/avr/util/u16AVRSleeps.c +++ b/src/c/hardware/avr/util/u16AVRSleeps.c @@ -1,8 +1,15 @@ -//Function to introduce specific delay in milliseconds -// -//Authors -// Siddhesh Wani +// Copyright (C) 2017 - IIT Bombay - FOSSEE // +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Organization: FOSSEE, IIT Bombay +// Author: Siddhesh Wani +// Email: toolbox@scilab.in + +//Function to introduce specific delay in milliseconds #include "AVRUtil.h" -- cgit From c7e9597db39140c1d982f796a8e1f03bb54e7905 Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Mon, 24 Apr 2017 14:08:37 +0530 Subject: Fixed float.h issue. OpenCV with built libraries working for linux x64 --- src/c/hardware/avr/util/u16AVRSleeps.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/c/hardware/avr/util/u16AVRSleeps.c') diff --git a/src/c/hardware/avr/util/u16AVRSleeps.c b/src/c/hardware/avr/util/u16AVRSleeps.c index a6a7e508..9fbd512d 100644 --- a/src/c/hardware/avr/util/u16AVRSleeps.c +++ b/src/c/hardware/avr/util/u16AVRSleeps.c @@ -1,14 +1,14 @@ -// Copyright (C) 2017 - IIT Bombay - FOSSEE -// -// This file must be used under the terms of the CeCILL. -// This source file is licensed as described in the file COPYING, which -// you should have received as part of this distribution. The terms -// are also available at -// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt -// Organization: FOSSEE, IIT Bombay -// Author: Siddhesh Wani -// Email: toolbox@scilab.in +/* Copyright (C) 2017 - IIT Bombay - FOSSEE + This file must be used under the terms of the CeCILL. + This source file is licensed as described in the file COPYING, which + you should have received as part of this distribution. The terms + are also available at + http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + Organization: FOSSEE, IIT Bombay + Author: Siddhesh Wani + Email: toolbox@scilab.in +*/ //Function to introduce specific delay in milliseconds #include "AVRUtil.h" -- cgit