add more hal api

This commit is contained in:
Matt on ZHAN66
2022-11-01 20:58:46 +08:00
parent 8dff1fe40a
commit 8c5c9db22f
18 changed files with 1720 additions and 0 deletions
+68
View File
@@ -0,0 +1,68 @@
%% File : hal_status_text.tlc
%% Created : Tue Nov 01 14:35:23 2022
%%
%% Description:
%% Simulink Coder wrapper functions interface generated for
%% S-function "hal_status_text.c".
%%
%% File generated by S-function Builder Block
%%
%% For more information on using the Target Language with the
%% Simulink Coder, see the Target Language Compiler manual
%% (under Simulink Coder) in the "Inlining S-Functions"
%% chapter under the section and subsection:
%% "Writing Block Target Files to Inline S-Functions",
%% "Function-Based or Wrappered Code".
%%
%implements hal_status_text "C"
%% Function: BlockTypeSetup ===================================================
%%
%% Purpose:
%% Set up external references for wrapper functions in the
%% generated code.
%%
%function BlockTypeSetup(block, system) Output
%openfile externs
#ifdef __cplusplus
extern "C" {
#endif
extern void hal_status_text_Start_wrapper(void);
extern void hal_status_text_Outputs_wrapper(const uint8_T *max_width,
uint8_T *text,
uint8_T *seq,
uint8_T *severity,
const int_T y_width);
extern void hal_status_text_Terminate_wrapper(void);
#ifdef __cplusplus
}
#endif
%closefile externs
%<LibCacheExtern(externs)>
%%
%endfunction
%% Function: Outputs ==========================================================
%%
%% Purpose:
%% Code generation rules for mdlOutputs function.
%%
%function Outputs(block, system) Output
%%
%assign pu0 = LibBlockInputSignalAddr(0, "", "", 0)
%assign py0 = LibBlockOutputSignalAddr(0, "", "", 0)
%assign py1 = LibBlockOutputSignalAddr(1, "", "", 0)
%assign py2 = LibBlockOutputSignalAddr(2, "", "", 0)
%assign py_width = LibBlockOutputSignalWidth(0)
hal_status_text_Outputs_wrapper(%<pu0>, %<py0>, %<py1>, %<py2>, %<py_width>);
%%
%endfunction
%% [EOF] hal_status_text.tlc