Skip to content

Commit

Permalink
Updating framework for FPP post-v2.0.1 (#2454)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch authored Jan 4, 2024
1 parent 51b40da commit bf3e7eb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Drv/Interfaces/ByteStreamDriverInterface.fppi
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
output port $recv: Drv.ByteStreamRecv

@ Port invoked to send data out the driver
guarded input port send: Drv.ByteStreamSend
guarded input port $send: Drv.ByteStreamSend
4 changes: 2 additions & 2 deletions RPI/Top/topology.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ module RPI {
connections Downlink {
chanTlm.PktSend -> downlink.comIn
downlink.bufferDeallocate -> fileDownlink.bufferReturn
downlink.framedOut -> comm.send
downlink.framedOut -> comm.$send
eventLogger.PktSend -> downlink.comIn
fileDownlink.bufferSendOut -> downlink.bufferIn
}
Expand Down Expand Up @@ -123,7 +123,7 @@ module RPI {

connections UART {
rpiDemo.UartBuffers -> uartBufferManager.bufferSendIn
rpiDemo.UartWrite -> uartDrv.send
rpiDemo.UartWrite -> uartDrv.$send
uartDrv.$recv -> rpiDemo.UartRead
uartDrv.allocate -> uartBufferManager.bufferGetCallee
}
Expand Down
2 changes: 1 addition & 1 deletion Ref/Top/topology.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ module Ref {
fileDownlink.bufferSendOut -> downlink.bufferIn

downlink.framedAllocate -> staticMemory.bufferAllocate[Ports_StaticMemory.downlink]
downlink.framedOut -> comm.send
downlink.framedOut -> comm.$send
downlink.bufferDeallocate -> fileDownlink.bufferReturn

comm.deallocate -> staticMemory.bufferDeallocate[Ports_StaticMemory.downlink]
Expand Down
4 changes: 2 additions & 2 deletions Svc/PrmDb/PrmDb.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ module Svc {
@ Failed to write parameter file
event PrmFileWriteError(
stage: PrmWriteError @< The write stage
record: I32 @< The record that had the failure
$record: I32 @< The record that had the failure
error: I32 @< The error code
) \
severity warning high \
Expand All @@ -140,7 +140,7 @@ module Svc {
@ Failed to read parameter file
event PrmFileReadError(
stage: PrmReadError @< The read stage
record: I32 @< The record that had the failure
$record: I32 @< The record that had the failure
error: I32 @< The error code
) \
severity warning high \
Expand Down

0 comments on commit bf3e7eb

Please sign in to comment.