代码搜索结果
找到约 10,000 项符合
Serial 的代码
serial_pal.v
module serial_pal(clk,reset,en,in,out);
input clk,reset,en,in;
output[3:0] out;
reg[3:0] out;
always @(posedge clk)
begin
if(reset) out
serial2.v
module serial2(q,a,clk);
output q,a;
input clk;
reg q,a;
always @(posedge clk)
begin
a=~q;
q=~q;
end
endmodule
serial1.v
module serial1(q,a,clk);
output q,a;
input clk;
reg q,a;
always @(posedge clk)
begin
q=~q;
a=~q;
end
endmodule
serial_port.h
/******************************************************************************
*
* Copyright (c) 2003 Gerhard W. Gruber
*
* PROJECT: pICE
* $Source: /cvsroot/pice/pice/module/serial_port.h,v $
serial-api.txt
BlueZ D-Bus Serial API description
**********************************
Copyright (C) 2004-2008 Marcel Holtmann
Serial hierarchy
================
Service org.bluez
Interface
serial-api.txt
Bluetooth serial service API description
****************************************
Copyright (C) 2006-2007 Marcel Holtmann
Manager hierarchy
=================
Interface org.b
serial_fifo.h
/*
LPCUSB, an USB device driver for LPC microcontrollers
Copyright (C) 2006 Bertrik Sikken (bertrik@sikken.nl)
Redistribution and use in source and binary forms, with or without
modificatio
serial_fifo.c
/*
LPCUSB, an USB device driver for LPC microcontrollers
Copyright (C) 2006 Bertrik Sikken (bertrik@sikken.nl)
Redistribution and use in source and binary forms, with or without
modification, ar
gpsinterface_serial.h
/*
* Roadnav
* GPSInterface_Serial.h
*
* Copyright (c) 2004 - 2006 Richard L. Lynch
*
* This program is free software; you can redistribute it and/or
gpsinterface_serial.cpp
/*
* Roadnav
* GPSInterface_Serial.cpp
*
* Copyright (c) 2004 - 2006 Richard L. Lynch
*
* This program is free software; you can redistribute it and/or