📄 datatypes.bsv
字号:
//----------------------------------------------------------------------//// The MIT License // // Copyright (c) 2007 Alfred Man Cheuk Ng, mcn02@mit.edu // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation // files (the "Software"), to deal in the Software without // restriction, including without limitation the rights to use,// copy, modify, merge, publish, distribute, sublicense, and/or sell// copies of the Software, and to permit persons to whom the// Software is furnished to do so, subject to the following conditions:// // The above copyright notice and this permission notice shall be// included in all copies or substantial portions of the Software.// // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR// OTHER DEALINGS IN THE SOFTWARE.//----------------------------------------------------------------------//import Controls::*;import FPComplex::*;import Vector::*;// Generic OFDM Messagetypedef struct{ ctrl_t control; data_t data;} Mesg#(type ctrl_t, type data_t) deriving (Eq, Bits);// OFDM symboltypedef Vector#(n, FPComplex#(i_prec, f_prec)) Symbol#(numeric type n, numeric type i_prec, numeric type f_prec); // Viterbi Metrictypedef Bit#(3) ViterbiMetric;typedef Vector#(o_sz,ViterbiMetric) DepunctData#(numeric type o_sz);// Transmitter Mesg Typestypedef Mesg#(ctrl_t, Bit#(n)) ScramblerMesg#(type ctrl_t, numeric type n);typedef Mesg#(ctrl_t, Bit#(n)) EncoderMesg#(type ctrl_t, numeric type n);typedef Mesg#(ctrl_t, Bit#(n)) InterleaverMesg#(type ctrl_t, numeric type n);typedef Mesg#(ctrl_t, Bit#(n)) MapperMesg#(type ctrl_t, numeric type n);typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec)) PilotInsertMesg#(type ctrl_t, numeric type n, numeric type i_prec, numeric type f_prec);typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec)) IFFTMesg#(type ctrl_t, numeric type n, numeric type i_prec, numeric type f_prec);typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec)) CPInsertMesg#(type ctrl_t, numeric type n, numeric type i_prec, numeric type f_prec);typedef FPComplex#(i_prec,f_prec) DACMesg#(numeric type i_prec, numeric type f_prec); // Receiver Mesg Typestypedef FPComplex#(i_prec,f_prec) SynchronizerMesg#(numeric type i_prec, numeric type f_prec);typedef Mesg#(SyncCtrl, FPComplex#(i_prec,f_prec)) UnserializerMesg#(numeric type i_prec, numeric type f_prec);// Bool = isNewPackettypedef Mesg#(Bool, Symbol#(n,i_prec,f_prec)) SPMesgFromSync#(numeric type n, numeric type i_prec, numeric type f_prec);typedef ctrl_t SPMesgFromRXController#(type ctrl_t); typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec)) FFTMesg#(type ctrl_t, numeric type n, numeric type i_prec, numeric type f_prec);typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec)) ChannelEstimatorMesg#(type ctrl_t, numeric type n, numeric type i_prec, numeric type f_prec); typedef Mesg#(ctrl_t, Symbol#(n, i_prec, f_prec)) DemapperMesg#(type ctrl_t, numeric type n, numeric type i_prec, numeric type f_prec);typedef Mesg#(ctrl_t, Vector#(n, decode_t)) DeinterleaverMesg#(type ctrl_t, numeric type n, type decode_t);typedef Mesg#(ctrl_t, Vector#(n, decode_t)) DecoderMesg#(type ctrl_t, numeric type n, type decode_t); typedef ScramblerMesg#(ctrl_t, n) DescramblerMesg#(type ctrl_t, numeric type n);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -