c-periphery RS485串口库文档serial.md(serial.h)(非阻塞读)(VMIN、VTIME)

  • c-periphery
  • https://github.com/vsergeev/c-periphery

文章目录

      • NAME
      • SYNOPSIS
      • ENUMERATIONS
        • 关于奇偶校验枚举类型
      • DESCRIPTION
        • serial_new()
        • serial_open()
          • 关于流控制
            • 软件流控制(XON/XOFF)
            • 硬件流控制(RTS/CTS)
            • 选择流控制方法
        • serial_open_advanced()
        • serial_read()
          • 关于非阻塞读
            • 如何工作的?
          • 使用场景
            • 示例
          • 关于VMIN和VTIME
            • VMIN (Minimum number of characters to read)
            • VTIME (Timer for read completion)
            • 结合使用 VMIN 和 VTIME
        • serial_write()
        • serial_flush()
        • serial_input_waiting()
        • serial_output_waiting()
        • serial_poll()
        • serial_close()
        • serial_free()
        • serial_get_xxx()
          • serial_get_baudrate()函数获取波特率流程
        • serial_set_xxx()
        • serial_get_vmin()、serial_get_vtime()、serial_set_vmin()、serial_set_vtime()
        • serial_fd()
        • serial_tostring()
        • serial_errno()
        • serial_errmsg()
      • RETURN VALUE
      • EXAMPLE

NAME

Serial wrapper functions for Linux userspace termios tty devices.

SYNOPSIS

#include <periphery/serial.h>/* Primary Functions */
serial_t *serial_new(void);
int serial_open(serial_t *serial, const char *path, uint32_t baudrate);
int serial_open_advanced(serial_t *serial, const char *path, uint32_t baudrate,unsigned int databits, serial_parity_t parity,unsigned int stopbits, bool xonxoff, bool rtscts);
int serial_read(serial_t *serial, uint8_t *buf, size_t len, int timeout_ms);
int serial_write(serial_t *serial, const uint8_t *buf, size_t len);
int serial_flush(serial_t *serial);
int serial_input_waiting(serial_t *serial, unsigned int *count);
int serial_output_waiting(serial_t *serial, unsigned int *count);
int serial_poll(serial_t *serial, int timeout_ms);
int serial_close(serial_t *serial);
void serial_free(serial_t *serial);/* Getters */
int serial_get_baudrate(serial_t *serial, uint32_t *baudrate);
int serial_get_databits(serial_t *serial, unsigned int *databits);
int serial_get_parity(serial_t *serial, serial_parity_t *parity);
int serial_get_stopbits(serial_t *serial, unsigned int *stopbits);
int serial_get_xonxoff(serial_t *serial, bool *xonxoff);
int serial_get_rtscts(serial_t *serial, bool *rtscts);/* Setters */
int serial_set_baudrate(serial_t *serial, uint32_t baudrate);
int serial_set_databits(serial_t *serial, unsigned int databits);
int serial_set_parity(serial_t *serial, enum serial_parity parity);
int serial_set_stopbits(serial_t *serial, unsigned int stopbits);
int serial_set_xonxoff(serial_t *serial, bool enabled);
int serial_set_rtscts(serial_t *serial, bool enabled);/* Miscellaneous */
int serial_fd(serial_t *serial);
int serial_tostring(serial_t *serial, char *str, size_t len);/* Error Handling */
int serial_errno(serial_t *serial);
const char *serial_errmsg(serial_t *serial);

ENUMERATIONS

  • serial_parity_t
    • PARITY_NONE: No parity
    • PARITY_ODD: Odd parity
    • PARITY_EVEN: Even parity
关于奇偶校验枚举类型

serial_parity_t”是一个枚举类型,用于定义串口通信中的奇偶校验选项。在串口通信中,奇偶校验是一种错误检测机制,它可以帮助检测数据传输中的单比特错误。这个枚举定义了三种可能的奇偶校验模式:

  1. PARITY_NONE:

    • 无校验:在这种模式下,不进行奇偶校验。数据传输不会增加校验位,这是最基本的设置,用于当错误检测不是特别关键的情况。
  2. PARITY_ODD:

    • 奇校验:在这种模式下,校验位设置为使得总的数据位(包括校验位)中1的数量为奇数。这意味着如果数据位中1的数量已经是奇数,则校验位为0;如果是偶数,则校验位为1。
  3. PARITY_EVEN:

    • 偶校验:与奇校验相反,偶校验确保总的数据位中1的数量为偶数。如果数据位中1的数量已经是偶数,则校验位为0;如果是奇数,则校验位为1。

这些设置通常在串口配置时指定,依据你的通信协议和所需的数据完整性级别来选择。例如,如果你的通信环境较为嘈杂或对数据准确性有较高要求,可能会选择使用奇校验或偶校验来提高数据的可靠性。如果环境相对稳定,为了节省带宽,可以选择无校验。

DESCRIPTION

serial_new()
serial_t *serial_new(void);

Allocate a Serial handle.

Returns a valid handle on success, or NULL on failure.


serial_open()
int serial_open(serial_t *serial, const char *path, uint32_t baudrate);

Open the tty device at the specified path (e.g. “/dev/ttyUSB0”), with the specified baudrate, and the defaults of 8 data bits, no parity, 1 stop bit, software flow control (xonxoff) off, hardware flow control (rtscts) off.

serial should be a valid pointer to an allocated Serial handle structure.

Returns 0 on success, or a negative Serial error code on failure.


关于流控制

在串口通信中,流控制是一种用于管理数据传输速率和确保数据完整性的机制。流控制可以是软件实现的,也可以是硬件实现的,用于控制发送设备和接收设备之间的数据流,防止接收方的缓冲区溢出。以下是对软件和硬件流控制的详细解释:

软件流控制(XON/XOFF)
  • 软件流控制,也称为 XON/XOFF 流控制,是通过发送特殊的控制字符来控制数据流的。
  • XON(通常是 ASCII 字符 CTRL-Q 或十六进制 0x11)和 XOFF(通常是 ASCII 字符 CTRL-S 或十六进制 0x13)分别用来恢复和暂停数据流。
  • 当接收设备的缓冲区接近满时,它会发送 XOFF 字符给发送设备,指示其停止发送数据。当接收设备准备好接收更多数据时,它会发送 XON 字符,指示发送设备继续发送数据。
  • 这种方法不需要额外的硬件支持,因为它使用标准的数据线来传输控制信号。
硬件流控制(RTS/CTS)
  • 硬件流控制,通常涉及 RTS(Request to Send)CTS(Clear to Send) 信号。
  • RTS 是发送设备用来指示它准备好发送数据的信号。当接收设备准备好接收数据时,它会通过 CTS 信号来响应。
  • 这种方式需要额外的硬件线路来传输 RTS 和 CTS 信号,因此对硬件的要求更高,但它可以提供更可靠的流控制,特别是在高速传输或长距离通信中。
  • 与软件流控制相比,硬件流控制通常可以处理更大的数据流量和更快的速度,因为它不依赖于数据线本身来传递控制信号。
选择流控制方法

选择哪种类型的流控制取决于特定应用的需求、硬件配置和预期的数据传输速率。在一些简单或成本敏感的应用中,软件流控制可能是一个好的选择。对于需要高可靠性和高速数据传输的应用,硬件流控制可能更为适合。

serial_open_advanced()
int serial_open_advanced(serial_t *serial, const char *path, uint32_t baudrate,unsigned int databits, serial_parity_t parity,unsigned int stopbits, bool xonxoff, bool rtscts);

Open the tty device at the specified path (e.g. “/dev/ttyUSB0”), with the specified baudrate, data bits, parity, stop bits, software flow control (xonxoff), and hardware flow control (rtscts) settings.

serial should be a valid pointer to an allocated Serial handle structure. databits can be 5, 6, 7, or 8. parity can be PARITY_NONE, PARITY_ODD, or PARITY_EVEN as defined above. stopbits can be 1 or 2.

Returns 0 on success, or a negative Serial error code on failure.


serial_read()
int serial_read(serial_t *serial, uint8_t *buf, size_t len, int timeout_ms);

Read up to len number of bytes from the serial port into the buf buffer with the specified millisecond timeout. timeout_ms can be positive for a blocking read with a timeout in milliseconds, zero for a non-blocking read, or negative for a blocking read that will block until length number of bytes are read.

For a non-blocking or timeout-bound read, serial_read() may return less than the requested number of bytes.

For a blocking read with the VMIN setting configured, serial_read() will block until at least VMIN bytes are read. For a blocking read with both VMIN and VTIME settings configured, serial_read() will block until at least VMIN bytes are read or the VTIME interbyte timeout expires after the last byte read. In either case, serial_read() may return less than the requested number of bytes.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced(). timeout_ms can be positive for a blocking read with a timeout in milliseconds, zero for a non-blocking read, or negative for a blocking read.

Returns the number of bytes read on success, 0 on timeout, or a negative Serial error code on failure.


关于非阻塞读

非阻塞读(non-blocking read)是指在读取数据时,如果没有数据可读,函数会立即返回而不是等待数据到达。这种模式在串口通信中非常有用,特别是在你需要程序在没有接收到数据的情况下继续执行其他任务时。

如何工作的?

当你对串口执行非阻塞读操作时:

  • 如果串口的输入缓冲区中有数据,serial_read() 会尽可能多地从缓冲区中读取数据,直到达到你请求的字节数(len 参数指定的数目)或缓冲区中的数据被全部读取完毕。
  • 如果输入缓冲区中没有数据,函数将立即返回,并且返回值为0,表示没有读取到任何数据。

这与阻塞读取(blocking read)形成对比,后者会在没有足够的数据可读时使调用线程暂停执行,直到有足够的数据可读或达到某个特定的条件(如超时或特定数量的数据已经可用)。

使用场景

非阻塞读特别适用于以下几种场景:

  • 多任务处理:当应用程序需要同时处理多种任务,如用户输入、数据处理和通信时,非阻塞读使程序能够在等待串口数据时继续执行其他任务。
  • 实时系统:在实时数据处理或响应系统中,你可能不希望程序在等待串口数据时发生任何延迟。
  • 事件驱动的程序:在事件驱动的设计中,非阻塞读可以用于轮询设备状态而不会阻塞程序的主循环。
示例

假设你有一个需要不断监测多个传感器数据,同时还需要响应用户命令的程序,使用非阻塞读可以让程序持续检查传感器数据,而不会因为某个传感器暂时没有数据而停滞不前。

在编程实践中,通常会结合使用非阻塞读和某种形式的事件通知或轮询机制,以有效地管理数据流和程序响应。

关于VMIN和VTIME

在串口编程中,VMINVTIME 是两个非常重要的设置,它们控制了阻塞读取(blocking read)行为,尤其是在使用 termios(在 UNIX 和类 UNIX 系统中控制终端 I/O 特性的编程接口)配置串口时。这两个参数通常一起使用来精确地定义串口读取操作的行为。

VMIN (Minimum number of characters to read)

VMIN 设置决定了 serial_read() 函数在返回前需要接收到的最小字符数。这是一个整数值,用于指定在阻塞模式下读取操作必须要读取的最少字节数。

  • 如果 VMIN 被设置为 0,serial_read() 可能会立即返回,不管有无数据到达。
  • 如果 VMIN 被设置为一个大于 0 的值,serial_read() 将会阻塞,直到至少有 VMIN 个字节的数据可以被读取。
VTIME (Timer for read completion)

VTIME 设置定义了等待数据时的计时器。这个计时器的单位是十分之一秒(100 毫秒),用于指定在阻塞读取期间等待的时间长度。

  • 如果 VTIME 设置为 0,则没有超时限制——serial_read() 将无限期等待,直到收到足够的数据。
  • 如果 VTIME 设置为一个正值,这个值代表在收到首个字符后,再继续等待指定的时间,以接收更多的数据。如果在这段时间内没有新的数据到达,serial_read() 将返回已接收到的数据。
结合使用 VMIN 和 VTIME

VMINVTIME 可以根据需要组合设置来满足不同的读取需求:

  • VMIN > 0VTIME > 0:在这种设置下,serial_read() 将阻塞直到收到 VMIN 个字节的数据,或者在收到至少一个字节数据后,VTIME 计时器到期时返回。这可以用于确保在指定时间内尽可能多地读取数据,但不会无限期等待。
  • VMIN = 0VTIME > 0:在这种设置下,serial_read() 将在没有数据时立即返回,如果有数据到达,则在指定的 VTIME 时间内等待更多数据。这种设置适合于非阻塞轮询。

这些参数的正确设置对于确保数据的有效和及时接收至关重要,特别是在实时系统或需要精确数据流控制的应用中。通过调整 VMINVTIME,你可以根据具体的应用需求优化串口通信的效率和响应性。

serial_write()
int serial_write(serial_t *serial, const uint8_t *buf, size_t len);

Write len number of bytes from the buf buffer to the serial port.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

Returns the number of bytes written on success, or a negative Serial error code on failure.


serial_flush()
int serial_flush(serial_t *serial);

Flush the write buffer of the serial port (i.e. force its write immediately).

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

Returns 0 on success, or a negative Serial error code on failure.


serial_input_waiting()
int serial_input_waiting(serial_t *serial, unsigned int *count);

Get the number of bytes waiting to be read from the serial port.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

Returns 0 on success, or a negative Serial error code on failure.


serial_output_waiting()
int serial_output_waiting(serial_t *serial, unsigned int *count);

Get the number of bytes waiting to be written to the serial port.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

Returns 0 on success, or a negative Serial error code on failure.


serial_poll()
bool serial_poll(serial_t *serial, int timeout_ms);

Poll for data available for reading from the serial port.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced(). timeout_ms can be positive for a timeout in milliseconds, zero for a non-blocking poll, or negative for a blocking poll.

Returns 1 on success (data available for reading), 0 on timeout, or a negative Serial error code on failure.


serial_close()
int serial_close(serial_t *serial);

Close the tty device.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

Returns 0 on success, or a negative Serial error code on failure.


serial_free()
void serial_free(serial_t *serial);

Free a Serial handle.


serial_get_xxx()
int serial_get_baudrate(serial_t *serial, uint32_t *baudrate);
int serial_get_databits(serial_t *serial, unsigned int *databits);
int serial_get_parity(serial_t *serial, serial_parity_t *parity);
int serial_get_stopbits(serial_t *serial, unsigned int *stopbits);
int serial_get_xonxoff(serial_t *serial, bool *xonxoff);
int serial_get_rtscts(serial_t *serial, bool *rtscts);

Get the baudrate, data bits, parity, stop bits, software flow control (xonxoff), or hardware flow control (rtscts), respectively, of the underlying tty device.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

Returns 0 on success, or a negative Serial error code on failure.


serial_get_baudrate()函数获取波特率流程

在这里插入图片描述
在这里插入图片描述
serial_get_baudrate() 函数的工作流程涉及到读取串口配置,并从中提取当前的波特率设置。这个过程使用 POSIX 的 termios 结构,其步骤大致如下:

  1. 获取串口属性

    • 函数首先通过 tcgetattr() 调用获取串口(由文件描述符 serial->fd 指向)当前的属性,并将其存储在一个 termios 结构体中。这个调用可能失败(比如如果文件描述符不是一个有效的串口),此时会返回错误。
  2. 解析波特率

    • 使用 cfgetospeed() 函数从 termios 结构体中提取输出波特率(实际上这个函数通常返回一个比特掩码,而不是实际的波特率数字)。然后 _serial_bits_to_baudrate() 函数将这个比特掩码转换成实际的整数波特率。这个转换通过一个 switch 语句来匹配 termios 定义的波特率常量,如 B9600B115200 等。
  3. 返回结果

    • 如果成功,波特率存储在 baudrate 指向的变量中,并返回 0 表示成功。如果有任何错误发生,将返回一个非零值表示错误。

此过程确保了可以有效地读取和解析连接在计算机上的串口设备的当前配置。这对于调试或动态调整串口设置非常有用。

serial_set_xxx()
int serial_set_baudrate(serial_t *serial, uint32_t baudrate);
int serial_set_databits(serial_t *serial, unsigned int databits);
int serial_set_parity(serial_t *serial, enum serial_parity parity);
int serial_set_stopbits(serial_t *serial, unsigned int stopbits);
int serial_set_xonxoff(serial_t *serial, bool enabled);
int serial_set_rtscts(serial_t *serial, bool enabled);

Set the baudrate, data bits, parity, stop bits, software flow control (xonxoff), or hardware flow control (rtscts), respectively, on the underlying tty device.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

Returns 0 on success, or a negative Serial error code on failure.


serial_get_vmin()、serial_get_vtime()、serial_set_vmin()、serial_set_vtime()
int serial_get_vmin(serial_t *serial, unsigned int *vmin);
int serial_get_vtime(serial_t *serial, float *vtime);
int serial_set_vmin(serial_t *serial, unsigned int vmin);
int serial_set_vtime(serial_t *serial, float vtime);

Get or set the termios VMIN and VTIME settings, respectively, of the underlying tty device.

VMIN specifies the minimum number of bytes returned from a blocking read. VTIME specifies the timeout in seconds of a blocking read.

When both VMIN and VTIME settings are configured, VTIME acts as an interbyte timeout that restarts on every byte received, and a blocking read will block until either VMIN bytes are read or the VTIME timeout expires after the last byte read. See the termios man page for more information.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced(). vmin can be between 0 and 255. vtime can be between 0 and 25.5 seconds, with a resolution of 0.1 seconds.

Returns 1 on success, or a negative Serial error code on failure.


serial_fd()
int serial_fd(serial_t *serial);

Return the file descriptor (for the underlying tty device) of the Serial handle.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

This function is a simple accessor to the Serial handle structure and always succeeds.


serial_tostring()
int serial_tostring(serial_t *serial, char *str, size_t len);

Return a string representation of the Serial handle.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

This function behaves and returns like snprintf().


serial_errno()
int serial_errno(serial_t *serial);

Return the libc errno of the last failure that occurred.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().


serial_errmsg()
const char *serial_errmsg(serial_t *serial);

Return a human readable error message of the last failure that occurred.

serial should be a valid pointer to a Serial handle opened with serial_open() or serial_open_advanced().

RETURN VALUE

The periphery Serial functions return 0 on success or one of the negative error codes below on failure.

The libc errno of the failure in an underlying libc library call can be obtained with the serial_errno() helper function. A human readable error message can be obtained with the serial_errmsg() helper function.

Error CodeDescription
SERIAL_ERROR_ARGInvalid arguments
SERIAL_ERROR_OPENOpening serial port
SERIAL_ERROR_QUERYQuerying serial port attributes
SERIAL_ERROR_CONFIGUREConfiguring serial port attributes
SERIAL_ERROR_IOReading/writing serial port
SERIAL_ERROR_CLOSEClosing serial port

EXAMPLE

#include <stdio.h>
#include <stdlib.h>#include "serial.h"int main(void) {serial_t *serial;const char *s = "Hello World!";char buf[128];int ret;serial = serial_new();/* Open /dev/ttyUSB0 with baudrate 115200, and defaults of 8N1, no flow control */if (serial_open(serial, "/dev/ttyUSB0", 115200) < 0) {fprintf(stderr, "serial_open(): %s\n", serial_errmsg(serial));exit(1);}/* Write to the serial port */if (serial_write(serial, s, strlen(s)) < 0) {fprintf(stderr, "serial_write(): %s\n", serial_errmsg(serial));exit(1);}/* Read up to buf size or 2000ms timeout */if ((ret = serial_read(serial, buf, sizeof(buf), 2000)) < 0) {fprintf(stderr, "serial_read(): %s\n", serial_errmsg(serial));exit(1);}printf("read %d bytes: _%s_\n", ret, buf);serial_close(serial);serial_free(serial);return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/51703.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

独立3D网络游戏《战域重甲》开发与上架经验分享

“ 小编阿麟&#xff1a;心之所向便是光&#xff0c;我们都是追光者!这位独立游戏开发者的产品能力已经不输给许多小团队&#xff0c;希望他的故事和经验分享&#xff0c;可以给走在同样道路上的朋友一些信心和帮助。 背景介绍 2023年年底的时候&#xff0c;我突然有一个很强的…

硬件工程师笔面试真题汇总

目录 1、电阻 1&#xff09;上拉电阻的作用 2&#xff09;PTC热敏电阻作为电源电路保险丝的工作原理 2、电容 1&#xff09;电容的特性 2) 电容的特性曲线 3) 1uf的电容通常来滤除什么频率的信号 3、电感 4、二极管 1&#xff09;二极管特性 2&#xff09;二极管伏安…

HVV | .NET 攻防工具库,值得您拥有!

01阅读须知 此文所提供的信息只为网络安全人员对自己所负责的网站、服务器等&#xff08;包括但不限于&#xff09;进行检测或维护参考&#xff0c;未经授权请勿利用文章中的技术资料对任何计算机系统进行入侵操作。利用此文所提供的信息而造成的直接或间接后果和损失&#xf…

《破解验证码:用Requests和Selenium实现模拟登录的终极指南》

两种模拟登录方式(图形验证码) 超级鹰 打码平台&#xff0c;用于识别验证码 requests模拟登录 from chaojiying import Chaojiying_Client import requests from requests import Session from lxml import etree #获取图片信息 def get_pic_info(img_name):chaojiying Ch…

10个append()函数在Python程序开发中的创新应用

文末赠免费精品编程资料~~ 在Python编程的世界里&#xff0c;append()函数是列表操作中最常见的方法之一。它允许我们在列表的末尾添加一个元素&#xff0c;这一简单的功能却能激发无限的创造力。今天&#xff0c;我们将探讨append()函数在Python程序开发中的10种创新应用&…

代码随想录第23天|回溯

39.组合总和 题目链接/文章讲解&#xff1a; 代码随想录 视频讲解&#xff1a;带你学透回溯算法-组合总和&#xff08;对应「leetcode」力扣题目&#xff1a;39.组合总和&#xff09;| 回溯法精讲&#xff01;_哔哩哔哩_bilibili 第一想法&#xff1a; 组合总和与第22天组合总…

爬虫实战-掌上高考网实战

1.确定需求&#xff1a;爬取什么数据爬取大学名称 2.找到数据源地址数据在哪个链接中https://api.zjzw.cn/web/api/?keyword&page1&province_id&ranktype&request_type1&size20&top_school_id[3703,2461,659,3117,597,1724]&type&uriapidata/…

2024电赛H题参考方案——自动行使小车

目录 一、题目要求 二、参考资源获取 三、参考方案 1、环境搭建及工程移植 2、移植MPU6050模块 3、移植TB6612电机驱动模块 其他模块根据需要移植 总结 一、题目要求 小编自认为&#xff1a;此次H题属于控制类题目&#xff0c;相较于往年较为简单&#xff0c;功能也算单一&…

【Java】韩顺平Java学习笔记 第19章 IO流

文章目录 文件概述常用的文件操作创建文件获取文件信息目录的操作和文件删除流的分类各抽象类常用子类对象FileInputStreamFileOutputStreamFileReaderFileWriter 节点流和处理流概念BufferedReaderBufferedWriterBufferedInputStream & BufferedOutputStream 对象流&#…

Python | TypeError: ‘module’ object is not callable

Python | TypeError: ‘module’ object is not callable 在Python编程中&#xff0c;遇到“TypeError: ‘module’ object is not callable”这类错误通常表明你尝试像函数一样调用了一个模块。这种错误通常是由于导入模块时的疏忽或误解导致的。本文将深入探讨此错误的根源&…

2024年7月23日~2024年7月29日周报

目录 一、前言 二、完成情况 2.1 一种具有边缘增强特点的医学图像分割网络 2.2 融合边缘增强注意力机制和 U-Net 网络的医学图像分割 2.3 遇到的困难 三、下周计划 一、前言 上周参加了一些师兄师姐的论文讨论会议&#xff0c;并完成了初稿。 本周继续修改论文&#xff0…

使用eclipse在新建的java项目中编辑xml文件时Unhandled event loop exception No more handles

处理方法&#xff1a;更换xml编辑器 Window ——》Preferences ——》General ——》Editors ——》File Associations 如果File types里面没有*.xml&#xff0c;则点击Add进行新增 选中*.xml&#xff0c;然后在Associated editors 选中想用的编辑器&#xff0c;设置为defaul…

小白也能读懂的ConvLSTM!(开源pytorch代码)

ConvLSTM 1. 算法简介与应用场景2. 算法原理2.1 LSTM基础2.2 ConvLSTM原理2.2.1 ConvLSTM的结构2.2.2 卷积操作的优点 2.3 LSTM与ConvLSTM的对比分析2.4 ConvLSTM的应用 3. PyTorch代码参考文献 仅需要网络源码的可以直接跳到末尾即可 1. 算法简介与应用场景 ConvLSTM&#x…

SAPUI5基础知识22 - 图标(Icons)

1. 背景 SAPUI5 提供了一套丰富的图标库&#xff0c;可以用于增强应用程序的视觉吸引力和用户体验。这些图标是矢量图形&#xff0c;可以在任何分辨率下保持清晰&#xff0c;并且可以自定义颜色和大小。 2. 示例 在 SAPUI5 中&#xff0c;图标可以通过 sap.ui.core.Icon 控件…

Redis快速入门基础

Redis入门 Redis是一个基于内存的 key-value 结构数据库。mysql是二维表的接口数据库 优点&#xff1a; 基于内存存储&#xff0c;读写性能高 适合存储热点数据(热点商品、资讯、新闻) 企业应用广泛 官网:https://redis.io 中文网:https://www.redis.net.cn/ Redis下载与…

The Llama 3 Herd of Models 第6部分推理部分全文

第1,2,3部分 介绍,概览和预训练 第4部分 后训练 第5部分 结果 6 Inference 推理 我们研究了两种主要技术来提高Llama 3405b模型的推理效率:(1)管道并行化和(2)FP8量化。我们已经公开发布了FP8量化的实现。 6.1 Pipeline Parallelism 管道并行 当使用BF16数字表示模型参数时…

家具购物小程序的设计

管理员账户功能包括&#xff1a;系统首页&#xff0c;个人中心&#xff0c;用户管理&#xff0c;家具分类管理&#xff0c;家具新品管理&#xff0c;订单管理&#xff0c;系统管理 微信端账号功能包括&#xff1a;系统首页&#xff0c;家具新品&#xff0c;家具公告&#xff0…

Linux网络——深入理解传入层协议TCP

目录 一、前导知识 1.1 TCP协议段格式 1.2 TCP全双工本质 二、三次握手 2.1 标记位 2.2 三次握手 2.3 捎带应答 2.4 标记位 RST 三、四次挥手 3.1 标记位 FIN 四、确认应答(ACK)机制 五、超时重传机制 六 TCP 流量控制 6.1 16位窗口大小 6.2 标记位 PSH 6.3 标记…

YOLOv5改进 | 卷积模块 | 无卷积步长用于低分辨率图像和小物体的新 CNN 模块SPD-Conv

秋招面试专栏推荐 &#xff1a;深度学习算法工程师面试问题总结【百面算法工程师】——点击即可跳转 &#x1f4a1;&#x1f4a1;&#x1f4a1;本专栏所有程序均经过测试&#xff0c;可成功执行&#x1f4a1;&#x1f4a1;&#x1f4a1; 专栏目录&#xff1a; 《YOLOv5入门 改…

[ WARN:0@0.014] global loadsave.cpp:248 cv::findDecoder imread_

[ WARN:00.014] global loadsave.cpp:248 cv::findDecoder imread_ 目录 [ WARN:00.014] global loadsave.cpp:248 cv::findDecoder imread_ 【常见模块错误】 【解决方案】 欢迎来到英杰社区https://bbs.csdn.net/topics/617804998 欢迎来到我的主页&#xff0c;我是博主英杰…