* src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
[fw/sdcc] / device / lib / pic16 / libio / adc / adcclose.c
index e6e5b2377b94e6e3d031d1c3b9e3c5512a18668e..3b103b3751230e96fb83676c68465a95e355ef0f 100644 (file)
@@ -1,11 +1,38 @@
 
-#include <pic18fregs.h>
+/*
+ * adcclose - shutdown AD module
+ *
+ * written by Vangelis Rokas, 2004 <vrokas AT otenet.gr>
+ *
+ * Devices implemented:
+ *     PIC18F[24][45][28]
+ *
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ */
+
+/*
+** $Id$
+*/
 
+#include <pic18fregs.h>
 #include <adc.h>
 
 
 void adc_close(void)
 {
-       ADCON0bits.ADON = 0;
-       PIE1bits.ADIE = 0;
+  ADCON0bits.ADON = 0;
+  PIE1bits.ADIE = 0;
 }