Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating framework for FPP post-v2.0.1 #2454

Merged
merged 1 commit into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading