利用chatgpt编写一段嵌入式代码-kb88凯时官网登录

来自:网络
时间:2023-06-25
阅读:
目录

1、chatgpt介绍

chatgpt: optimizing language models for dialogue,即优化对话的语言模型,它以对话的方式进行交互。对话形式使chatgpt能够回答后续问题,承认错误,质疑不正确的前提,并拒绝不适当的请求。

官方的一个例子:

看到图片的第一印象:chatgpt竟然能够查错代码,让人感觉到不可思议!

2、体验chatgpt

登录上chatgpt之后,我们就可以看到如下界面,此时就可以愉快地畅聊了!

浅聊......

coding...

#include 
#include 
/* 定义 i2c 设备名称 */
#define device_name "i2c_device"
/* 定义 i2c 设备地址 */
#define device_addr 0x20
/* 定义 i2c 设备结构体 */
struct i2c_dev {
    struct i2c_client *client;
};
static int i2c_probe(struct i2c_client *client, const struct i2c_device_id *id)
{
    struct i2c_dev *i2c_dev;
    /* 为 i2c 设备分配内存空间 */
    i2c_dev = devm_kzalloc(&client->dev, sizeof(*i2c_dev), gfp_kernel);
    if (!i2c_dev)
        return -enomem;
    i2c_dev->client = client;
    i2c_set_clientdata(client, i2c_dev);
    /* 在这里执行 i2c 设备初始化操作 */
    return 0;
}
static int i2c_remove(struct i2c_client *client)
{
    struct i2c_dev *i2c_dev = i2c_get_clientdata(client);
    /* 在这里执行 i2c 设备资源释放操作 */
    return 0;
}
static const struct i2c_device_id i2c_id[] = {
    { device_name, device_addr },
    { }
};
module_device_table(i2c, i2c_id);
static struct i2c_driver i2c_driver = {
    .driver = {
        .name = device_name,
        .owner = this_module,
    },
    .probe = i2c_probe,
    .remove = i2c_remove,
    .id_table = i2c_id,
};
module_i2c_driver(i2c_driver);
module_author("your name");
module_description("i2c driver for linux");
module_license("gpl");

上面的代码就是chatgpt自动写出来的,我惊了!

一个人工智能的语言模型能够分分钟干出来代码,着实有点牛了.

你以为这就完了吗?

#!/bin/bash
# 设置网卡名称
iface="eth0"
# 循环测试网卡是否存在
while true
do
    if ifconfig $iface
    then
        echo "网卡 $iface 已存在"
    else
        echo "网卡 $iface 不存在"
    fi
    # 每隔一段时间测试一次
    sleep 1
done

chatgpt玩了一会,深吸一口气......

返回顶部
顶部
网站地图