diff options
| author | Evan Lojewski <github@meklort.com> | 2020-11-24 17:15:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-24 17:15:10 -0700 |
| commit | fcb3fecb2d7ed14baa67c39fb998055c7ac14aa5 (patch) | |
| tree | 2f8be59faded1091007cd8b978ec18f3bf131476 /libs/NCSI/include | |
| parent | 12527c12a237a411241b7d00c06107dbc8117986 (diff) | |
| download | bcm5719-ortega-fcb3fecb2d7ed14baa67c39fb998055c7ac14aa5.tar.gz bcm5719-ortega-fcb3fecb2d7ed14baa67c39fb998055c7ac14aa5.zip | |
ncsi: Add an additional TX api. (#180)
Diffstat (limited to 'libs/NCSI/include')
| -rw-r--r-- | libs/NCSI/include/NCSI.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/NCSI/include/NCSI.h b/libs/NCSI/include/NCSI.h index 90ff5b5..76847a7 100644 --- a/libs/NCSI/include/NCSI.h +++ b/libs/NCSI/include/NCSI.h @@ -71,6 +71,10 @@ void handleNCSIFrame(const NetworkFrame_t* frame); //lint -sem(NCSI_TxPacket, 2n >= 1P) Warn if packet is smaller than packet_len void NCSI_TxPacket(const uint32_t* packet, uint32_t packet_len); +//lint -sem(NCSI_TxBePacket, 1p) Warn if packet is NULL +//lint -sem(NCSI_TxBePacket, 2n >= 1P) Warn if packet is smaller than packet_len +void NCSI_TxBePacket(const uint32_t* packet, uint32_t packet_len); + void NCSI_handlePassthrough(void); void NCSI_init(void); |

