Closed kakbydima closed 3 weeks ago
I did bypass it though via ws[ 'schCheck' ] (cv)
The correct way to translate schCheck(cv)
into Python would be ws.sch.check(cv)
.
Hi nielsbuwen, got it, thank you for the response!
You are welcome. Did that solve your issue? If yes, you can close the issue
Yes, it does solve the issue. Thank you
Updated parameters of a cell's schematic, but check and save via skillbridge does not seem to perform specifically check the netlist and ADE failes to generate netlist. The basic skill code does the job (schCheck(cv) + dbSave(cv))
With skillbridge there is an indication of schematic save (same as with skillcode), but no indication of schematic check being performed. Do you know how to check that the ws.db.check(cv) works properly?
The python code part is the following: cv = ws.db.open_cell_view_by_type("lib", "cell", "celltype", "", "a") ... ws['CCSinvokeCdfCallbacks'](cv, order=["l", "fingers", "fw", "w"]) ws.db.check(cv) ws.db.save(cv) ws.db.close(cv)