00001 /* 00002 * "Copyright (c) 2008 Robert B. Reese, Bryan A. Jones, J. W. Bruce ("AUTHORS")" 00003 * All rights reserved. 00004 * (R. Reese, reese_AT_ece.msstate.edu, Mississippi State University) 00005 * (B. A. Jones, bjones_AT_ece.msstate.edu, Mississippi State University) 00006 * (J. W. Bruce, jwbruce_AT_ece.msstate.edu, Mississippi State University) 00007 * 00008 * Permission to use, copy, modify, and distribute this software and its 00009 * documentation for any purpose, without fee, and without written agreement is 00010 * hereby granted, provided that the above copyright notice, the following 00011 * two paragraphs and the authors appear in all copies of this software. 00012 * 00013 * IN NO EVENT SHALL THE "AUTHORS" BE LIABLE TO ANY PARTY FOR 00014 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT 00015 * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE "AUTHORS" 00016 * HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00017 * 00018 * THE "AUTHORS" SPECIFICALLY DISCLAIMS ANY WARRANTIES, 00019 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 00020 * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS 00021 * ON AN "AS IS" BASIS, AND THE "AUTHORS" HAS NO OBLIGATION TO 00022 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS." 00023 * 00024 * Please maintain this header in its entirety when copying/modifying 00025 * these files. 00026 * 00027 * 00028 */ 00029 00030 #include "pic24_all.h" 00031 00039 #define CONFIG_TOUT() CONFIG_RB2_AS_DIG_OUTPUT() 00040 #define TOUT _LATB2 //output state 00041 00042 #define TIN _RB3 //test in 00043 #define CONFIG_TIN() CONFIG_RB3_AS_DIG_INPUT(); 00044 00045 #define TPW 1 // in ms, pulsewidth of TOUT 00046 00047 int main (void) { 00048 uint8 u8_oldvalueTIN; 00049 configBasic(HELLO_MSG); 00050 TOUT = 1; // TOUT drives TIN 00051 CONFIG_TIN(); 00052 CONFIG_TOUT(); 00053 DELAY_MS(10); //wait for output to stablize because of filter 00054 u8_oldvalueTIN = TIN; 00055 while (1) { 00056 TOUT = !TOUT; 00057 DELAY_MS(TPW); 00058 if (u8_oldvalueTIN != TIN) { 00059 u8_oldvalueTIN = TIN; 00060 outString("*"); 00061 } 00062 } 00063 }