2018-02-10 15:28:51 -08:00
|
|
|
// import _ from '@uci/utils/src/byte'
|
|
|
|
import _ from '../../archive/uci-utils/src/byte'
|
|
|
|
import { CHIP, PIN } from './config'
|
|
|
|
|
|
|
|
export const chip = {
|
|
|
|
ack: async function(packet){
|
2018-02-11 19:56:44 -08:00
|
|
|
let bus = await this.busSend({ cmd:'scan'})
|
|
|
|
if (bus.error) return bus
|
|
|
|
let res = { cmd:'reply', _req:packet, _reqBus:{cmd:'scan'}, ack: false, address:this.address, scan:bus.response}
|
|
|
|
if (bus.response.indexOf(this.address) !== -1) res.ack = true
|
2018-02-10 15:28:51 -08:00
|
|
|
return res
|
|
|
|
},
|
2018-02-11 19:56:44 -08:00
|
|
|
// for custom chip configuration set packet.cfg='custom' then packet.setting should be a
|
|
|
|
// configuration byte with given format ('STR' by defaul).
|
2018-02-10 15:28:51 -08:00
|
|
|
cfg: async function(packet){
|
2018-02-11 19:56:44 -08:00
|
|
|
busPacket = busPacket.bind(this)
|
|
|
|
// first make sure chip is in set to BANK=0 if not already
|
|
|
|
let bus = await this.busSend(busPacket('write',0x05,0))
|
|
|
|
if (bus.error) return bus
|
2018-02-10 15:28:51 -08:00
|
|
|
let setting = {}
|
|
|
|
let cfg = packet.cfg || 'default'
|
|
|
|
if (cfg === 'custom') setting = {val:packet.setting, fmt:packet.fmt || 'STR'}
|
|
|
|
else {
|
|
|
|
if (CHIP[cfg]) setting = CHIP[cfg]
|
|
|
|
else return {error:`no chip settings for ${cfg}`}
|
|
|
|
}
|
|
|
|
let byte = _.byteFormat(setting.val, { in: setting.fmt, out: 'DEC' })
|
2018-02-11 19:56:44 -08:00
|
|
|
if (byte < 128) byte += 128 // make sure BANK=1 remains on
|
|
|
|
bus = await this.busSend(busPacket('write',0x0A,byte))
|
|
|
|
if (bus.error) return bus
|
|
|
|
bus = await this.busSend(busPacket('read',0x05))
|
|
|
|
if (bus.error) return bus
|
|
|
|
return { cmd:'reply', _req:packet, response:_.byteFormat(bus.response,{in:'DEC',out:'STR'}) }
|
2018-02-10 15:28:51 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Individual Pin Configurations
|
|
|
|
// set is for cfg: 'custom' assume a setting is zero unless given
|
|
|
|
// packet = { pin:, port:, cfg: , set:{dir: 0, ivrt: 0, pullup: 0, intr: 0, usedef: 0,defval: 0} }
|
|
|
|
// first get the current byte (pin) state for that setting
|
|
|
|
export const pin = {
|
|
|
|
cfg: async function(packet){
|
|
|
|
let cfg = {}
|
|
|
|
let reply = { cmd:'reply', _req:packet, response:{} }
|
|
|
|
packet.cfg = packet.cfg || 'output'
|
|
|
|
if (packet.cfg==='custom') cfg = packet.set
|
|
|
|
else cfg = PIN.cfgset[packet.cfg]
|
|
|
|
for(let name of Object.keys(PIN.setting)) {
|
|
|
|
let op = cfg[name] ? 'on' : 'off'
|
2018-02-11 19:56:44 -08:00
|
|
|
// console.log(name, op)
|
2018-02-11 11:41:45 -08:00
|
|
|
let busreply = await state.bind(this)(packet,op,PIN.setting[name])
|
|
|
|
if (busreply.error) return busreply
|
2018-02-11 19:56:44 -08:00
|
|
|
reply.response[name] = busreply.status
|
2018-02-10 15:28:51 -08:00
|
|
|
}
|
|
|
|
return reply
|
|
|
|
},
|
|
|
|
|
|
|
|
// state is equivalent to read
|
2018-02-11 19:56:44 -08:00
|
|
|
status: async function (packet) {
|
|
|
|
let reg = packet.reg ? PIN.cmd[packet.reg] : PIN.cmd.gpio
|
|
|
|
if (!reg) return {error:`unknown register ${packet.reg}`, packet:packet }
|
|
|
|
let reply = { cmd:'reply', _req:packet}
|
|
|
|
let pins = parsePins(packet.pins)
|
|
|
|
let state = new _.Byte()
|
|
|
|
let bus = await this.busSend(busPacket.bind(this)('read',reg, packet.port))
|
|
|
|
if (bus.error) return bus
|
|
|
|
state.value = bus.response
|
|
|
|
reply.port = state.toFmt('ARY')
|
|
|
|
reply.pins = pins.value.map(pin => {
|
|
|
|
if (state.toFmt('PLC').indexOf(pin) !==-1) return [pin, 'on']
|
|
|
|
else return [pin,'off']
|
|
|
|
})
|
|
|
|
return reply
|
2018-02-10 15:28:51 -08:00
|
|
|
},
|
|
|
|
// threse three only for output pins
|
|
|
|
state : {
|
|
|
|
on: async function (packet) {
|
|
|
|
return state.bind(this)(packet,'on')
|
|
|
|
},
|
|
|
|
off: async function (packet) {
|
|
|
|
return state.bind(this)(packet,'off')
|
|
|
|
},
|
|
|
|
toggle: async function (packet) {
|
|
|
|
return state.bind(this)(packet,'toggle')
|
|
|
|
}
|
|
|
|
},
|
2018-02-11 11:41:45 -08:00
|
|
|
// // will create packet to determine pin caused interrupt, packet will come from interrupt module
|
2018-02-10 15:28:51 -08:00
|
|
|
// interrupt: {
|
|
|
|
// find: packet =>{},
|
|
|
|
// report: packet=>{} // come here after determining which pin to report to requester
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
2018-02-11 11:41:45 -08:00
|
|
|
const parsePins = function(pins) {
|
|
|
|
if (typeof pins==='number') pins = [pins]
|
|
|
|
if (typeof pins==='string') {
|
|
|
|
if (pins==='all') pins = _.byteFormat(255,{in:'DEC', out:'PLC'})
|
|
|
|
else pins = pins.split(',')
|
|
|
|
}
|
|
|
|
return new _.Byte(pins,'PLC')
|
|
|
|
}
|
|
|
|
|
|
|
|
let busPacket = function (cmd,reg,byte,port) {
|
|
|
|
if (typeof byte==='string') port = byte
|
|
|
|
let shift = (port==='B') ? 0x10 : 0
|
2018-02-11 19:56:44 -08:00
|
|
|
let packet = { cmd:cmd, args: {address:this.address, cmd:reg+shift, byte:byte } }
|
|
|
|
return packet
|
2018-02-11 11:41:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const state = async function(packet,op,reg){
|
|
|
|
busPacket = busPacket.bind(this)
|
|
|
|
reg = (reg!==undefined)? reg : PIN.cmd.gpio
|
2018-02-11 19:56:44 -08:00
|
|
|
// console.log(op, reg)
|
2018-02-10 15:28:51 -08:00
|
|
|
let reply = { cmd:'reply', _req:packet}
|
2018-02-11 11:41:45 -08:00
|
|
|
let pins = parsePins(packet.pins)
|
2018-02-10 15:28:51 -08:00
|
|
|
let state = new _.Byte()
|
2018-02-11 11:41:45 -08:00
|
|
|
let bus = await this.busSend(busPacket('read',reg, packet.port))
|
|
|
|
if (bus.error) return bus
|
2018-02-10 15:28:51 -08:00
|
|
|
state.value = bus.response
|
2018-02-11 11:41:45 -08:00
|
|
|
bus = await this.busSend(busPacket('write',reg,state.bwOp(pins.value,op,{in:'PLC', out:'DEC'}),packet.port))
|
2018-02-10 15:28:51 -08:00
|
|
|
if (bus.error) return bus
|
2018-02-11 11:41:45 -08:00
|
|
|
bus = await this.busSend(busPacket('read',reg, packet.port))
|
2018-02-10 15:28:51 -08:00
|
|
|
if (bus.error) return bus
|
|
|
|
state.value = bus.response
|
2018-02-11 11:41:45 -08:00
|
|
|
reply.status = state.bwOp(pins.value,'check',{in:'PLC', out:'PLC'})
|
2018-02-10 15:28:51 -08:00
|
|
|
return reply
|
|
|
|
}
|