📄 receivetest.c
字号:
//****************************************************************************// Copyright (C) 2001,2002 PEAK System-Technik GmbH//// linux@peak-system.com // www.peak-system.com//// This program is free software; you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation; either version 2 of the License, or// (at your option) any later version.//// This program 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., 675 Mass Ave, Cambridge, MA 02139, USA.//// Maintainer(s): Klaus Hitschler (klaus.hitschler@gmx.de)//****************************************************************************//****************************************************************************//// receivetest.c - a small program to test the receive features of pcan driver // and the supporting shared library//// $Log: receivetest.c,v $// Revision 1.8 2003/03/02 10:58:08 klaus// merged USB thread into main path//// Revision 1.7.2.2 2003/01/29 21:57:58 klaus// modified to use with USB//// Revision 1.7.2.1 2003/01/29 21:57:58 klaus// modified to use with USB//// Revision 1.7 2002/02/16 16:38:10 klaus// cosmetical changes//// Revision 1.6 2002/01/30 20:54:27 klaus// simple source file header change//// Revision 1.5 2002/01/13 18:26:42 klaus// first release//// Revision 1.4 2002/01/07 21:19:07 klaus// smoothed error handling////****************************************************************************//----------------------------------------------------------------------------// set here current release for this program#define CURRENT_RELEASE "Release_20020206a" //****************************************************************************// INCLUDES#include <stdio.h>#include <stdlib.h>#include <errno.h>#include <unistd.h> // exit#include <signal.h>#include <string.h>#include <stdlib.h> // strtoul#include <libpcan.h>#include <src/common.h>//****************************************************************************// DEFINES//****************************************************************************// GLOBALSHANDLE h = NULL;char *current_release;//****************************************************************************// LOCALS//****************************************************************************// CODE static void hlpMsg(void){ printf("receivetest - a small test program which receives and prints CAN messages.\n"); printf("usage: receivetest [-t=type] [-p=port [-i=irq]] [-b=BTR0BTR1] [-e] [-?]\n"); printf("options: -t - type of interface, e.g. 'pci', 'sp', 'epp', 'isa' or 'usb' (default: pci).\n"); printf(" -p - port in hex notation if applicable, e.g. 0x378 (default: 1st port of type).\n"); printf(" -i - irq in dec notation if applicable, e.g. 7 (default: irq of 1st port).\n"); printf(" -b - BTR0BTR1 code in hex, e.g. 0x001C (default: 500 kbit).\n"); printf(" -e - accept extended frames. (default: standard frames)\n"); printf(" -? or --help - this help\n"); printf("\n");}// centralized entry point for all exitsstatic void my_private_exit(int error){ if (h) { print_diag("receivetest"); CAN_Close(h); } printf("receivetest: finished (%d).\n\n", error); exit(error);}// handles CTRL-C user interruptstatic void signal_handler(int signal){ my_private_exit(0);}// here all is doneint main(int argc, char *argv[]){ char *ptr; int i; int nType = HW_PCI; __u32 dwPort = 0; __u16 wIrq = 0; __u16 wBTR0BTR1 = 0; int nExtended = CAN_INIT_TYPE_ST; errno = 0; current_release = CURRENT_RELEASE; disclaimer("receivetest"); // decode command line arguments for (i = 1; i < argc; i++) { char c; ptr = argv[i]; while (*ptr == '-') ptr++; c = *ptr; ptr++; if (*ptr == '=') ptr++; switch(tolower(c)) { case 't': nType = getTypeOfInterface(ptr); if (!nType) { errno = EINVAL; printf("receivetest: unknown type of interface"); my_private_exit(errno); } break; case 'p': dwPort = strtoul(ptr, NULL, 16); break; case 'i': wIrq = (__u16)strtoul(ptr, NULL, 10); break; case 'e': nExtended = CAN_INIT_TYPE_EX; break; case '?': case 'h': hlpMsg(); my_private_exit(0); break; case 'b': wBTR0BTR1 = (__u16)strtoul(ptr, NULL, 16); break; default: errno = EINVAL; perror("receivetest: unknown command line argument"); my_private_exit(errno); break; } } // give some information back printf("receivetest: type=%s", getNameOfInterface(nType)); if (nType == HW_USB) { printf(", Serial Number=default, Device Number=%d\n", wIrq); } else { if (dwPort) { if (nType == HW_PCI) printf(", %d. PCI device", dwPort); else printf(", port=0x%08x", dwPort); } else printf(", port=default"); if ((wIrq) && !(nType == HW_PCI)) printf(" irq=0x%04x\n", wIrq); else printf(", irq=default\n"); } if (nExtended == CAN_INIT_TYPE_EX) printf(" Extended frames are accepted"); else printf(" Only standard frames are accepted"); if (wBTR0BTR1) printf(", init with BTR0BTR1=0x%04x\n", wBTR0BTR1); else printf(", init with 500 kbit/sec.\n"); // install signal handler for manual break signal(SIGINT, signal_handler); // open the CAN port // please use what is appropriate // HW_DONGLE_SJA // HW_DONGLE_SJA_EPP // HW_ISA_SJA // HW_PCI // HW_USB h = CAN_Open(nType, dwPort, wIrq); if (h) { char txt[VERSIONSTRING_LEN]; // get version info errno = CAN_VersionInfo(h, txt); if (!errno) printf("receivetest: driver version = %s\n", txt); else { perror("receivetest: CAN_VersionInfo()"); my_private_exit(errno); } // init to a user defined bit rate if (wBTR0BTR1) { errno = CAN_Init(h, wBTR0BTR1, nExtended); if (errno) { perror("receivetest: CAN_Init()"); my_private_exit(errno); } } // read in endless loop until Ctrl-C while (1) { TPCANMsg m; __u32 status; if ((errno = CAN_Read(h, &m))) { perror("receivetest: CAN_Read()"); my_private_exit(errno); } else { print_message(&m); // check if a CAN status is pending if (m.MSGTYPE & MSGTYPE_STATUS) { status = CAN_Status(h); if ((int)status < 0) { errno = nGetLastError(); perror("receivetest: CAN_Status()"); my_private_exit(errno); } else printf("receivetest: pending CAN status 0x%04x read.\n", (__u16)status); } } } } else { errno = nGetLastError(); perror("receivetest: CAN_Open()"); my_private_exit(errno); } return errno;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -