removed unused databus functions

This commit is contained in:
Mikayla
2025-11-02 17:01:20 +00:00
parent cddd9f7437
commit 0cc62b3447
3 changed files with 0 additions and 21 deletions

View File

@@ -94,11 +94,4 @@ function databus.tx_rps(tripped, status, emer_cool_active)
databus.ps.publish("emer_cool", emer_cool_active)
end
-- link a function to receive data from the bus
---@param field string field name
---@param func function function to link
function databus.rx_field(field, func)
databus.ps.subscribe(field, func)
end
return databus

View File

@@ -70,11 +70,4 @@ function databus.tx_link_state(state)
databus.ps.publish("link_state", state)
end
-- link a function to receive data from the bus
---@param field string field name
---@param func function function to link
function databus.rx_field(field, func)
databus.ps.subscribe(field, func)
end
return databus

View File

@@ -172,11 +172,4 @@ function databus.tx_pdg_rtt(session_id, rtt)
end
end
-- link a function to receive data from the bus
---@param field string field name
---@param func function function to link
function databus.rx_field(field, func)
databus.ps.subscribe(field, func)
end
return databus