Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // The two dimensional array is replaced. We identify
  2. // SignalProcesingCard as an object. This
  3. // object contains 32 DSPs
  4.  
  5. class SignalProcessingCard
  6. {
  7. DSP m_dsp[MAX_DSPS_PER_CARD];
  8. public:
  9. . . .
  10. };
  11.  
  12. // Array of signal processing card objects, indexed by signal processing card id
  13. SignalProcessingCard m_signalProcessingCard[MAX_SIGNAL_PROCESSOR_CARDS];
  14. . . .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement