23 lines
532 B
C
23 lines
532 B
C
/**
|
||
* @file FluxProtocol.c
|
||
* @brief 流量计通讯协议部分
|
||
*
|
||
* 用于声明便携制氧机参数
|
||
*
|
||
* @author wang xiang en
|
||
* @date 2025-04-18
|
||
* @version 版本号
|
||
* @copyright 版权声明((C)2025, YUWELL MEDTECH Co.ltd)
|
||
*/
|
||
#include <stdio.h>
|
||
#include "FluxProtocol.h"
|
||
|
||
/*记录spirits3的没分钟输出的体积*/
|
||
float Spirit3_Volume[4] = { 210,420,630,750};
|
||
float Spirit6_Volume[6] = { 210,420,630,840,1050,1200};
|
||
float YULite8_Volume[6] = { 210,420,630,840,1050,1200};
|
||
|
||
struct FluxProtocol fluxProtocol;
|
||
|
||
|