Skip to content
Snippets Groups Projects
Commit 827032da authored by Cristian Galperti's avatar Cristian Galperti
Browse files

node09 passes ctrd at tcv level on expcpde 1

parent 772c6d8e
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,7 @@ classdef SCDclass_expcode
assert(~isempty(hardwarepath),'%s not found?',mainslx)
obj.ddpath = hardwarepath;
obj.definednodes = [1 2 6 7 8];
obj.definednodes = [1 2 6 7 8 9];
obj.algonamelist = {};
obj.algoddlist = {};
......
......@@ -181,6 +181,21 @@ classdef SCDclass_node < SCDclass_component
node.haswavegen = true;
node.hasadc = true;
node.hasethercat = false;
case 9
node.ncpu = 1;
node.type = '10cpusI9';
node.timing.t_start = -0.5;
node.timing.t_stop = 2.5;
node.timing.dt = 1e-3;
node.buildcfg.conffile = cell(node.ncpu,1);
node.buildcfg.conffile{1} = 'standard';
node.buildcfg.conffile{2} = 'standard';
node.buildcfg.conffile{3} = 'standard';
node.buildcfg.conffile{4} = 'standard';
node.buildcfg.initscdbeforecomp = [0 0 0 0];
node.haswavegen = true;
node.hasadc = true;
node.hasethercat = false;
end
node.cpuactive = zeros(1,node.ncpu);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment