A.Elgogary Posted July 14, 2016 Report Share Posted July 14, 2016 I have been tring to connect Systemc Modul with SC_METHOD to other parts which is TDF modules, but keep receiving different errors in ports and signals connection , Can some clarify how to do it? Controller have inputs from TDF and sends outputs to it (Systemc) to (Systemc-AMs) TDF krishnadas_b 1 Quote Link to comment Share on other sites More sharing options...
A.Elgogary Posted July 14, 2016 Author Report Share Posted July 14, 2016 like this no match for call to ‘(sca_tdf::sca_de::sca_in<double>) (sca_tdf::sca_signal<double>&)’ Quote Link to comment Share on other sites More sharing options...
Martin Barnasconi Posted July 15, 2016 Report Share Posted July 15, 2016 I expect your SystemC module, as leave cell, uses regular ports (sc_in/sc_out). The SystemC AMS TDF module should use the converter ports (sca_tdf::sca_de::sca_in, sca_tdf::sca_de::sca_out), so it can be connected to regular SystemC modules. This means that the top-level module, which instantiates this SystemC module and the SystemC AMS TDF module, should then a sc_signal, since the input for the SystemC AMS TDF module needs to see this type of signals. Quote Link to comment Share on other sites More sharing options...
A.Elgogary Posted July 15, 2016 Author Report Share Posted July 15, 2016 thanks worked Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.