* device/include/pic16/adc.h,
[fw/sdcc] / device / lib / pic16 / libio / adc / adcconv.c
index 279ba769759895308a05a9bb59d1adfe5247ece6..5f3728e9ea70eee2881e9ff076b42215a469ea03 100644 (file)
@@ -1,10 +1,36 @@
 
-#include <pic18fregs.h>
+/*
+ * adcconv - begin a conversion
+ *
+ * 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_conv(void)
 {
-       ADCON0bits.GO = 1;
+  ADCON0bits.GO = 1;
 }
+