constants in pasm
mctrivia
Posts: 3,772
in spin you can define:
constant(((Clock_Pin <# 31) #> 0))
why is there not a system like this for pasm?
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Need to make your prop design easier or secure? Get a PropMod $50CAN has crystal, eeprom, and programing header in a 40 pin dip 0.7" pitch module.
constant(((Clock_Pin <# 31) #> 0))
why is there not a system like this for pasm?
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Need to make your prop design easier or secure? Get a PropMod $50CAN has crystal, eeprom, and programing header in a 40 pin dip 0.7" pitch module.
Comments
Label···long·····(Clock_Pin <# 31) #> 0
and the value is computed at compile time as any Spin constant would be.
-Phil