首页 > 系统相关 >蜂鸣器 m68kspkr linux 驱动程序

蜂鸣器 m68kspkr linux 驱动程序

时间:2024-12-17 12:29:37浏览次数:8  
标签:蜂鸣器 驱动程序 Copyright int unsigned MODULE m68kspkr include

/*

  • m68k beeper driver for Linux
  • Copyright © 2002 Richard Zidlicky
  • Copyright © 2002 Vojtech Pavlik
  • Copyright © 1992 Orest Zborowski

*/

/*

  • This program is free software; you can redistribute it and/or modify it
  • under the terms of the GNU General Public License version 2 as published by
  • the Free Software Foundation
    */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/input.h>
#include <linux/platform_device.h>
#include <asm/machdep.h>
#include <asm/io.h>

MODULE_AUTHOR(“xxx”);
MODULE_DESCRIPTION(“m68k beeper driver”);
MODULE_LICENSE(“GPL”);

static struct platform_device *m68kspkr_platform_device;

static int m68kspkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{

标签:蜂鸣器,驱动程序,Copyright,int,unsigned,MODULE,m68kspkr,include
From: https://blog.csdn.net/baidu_37552881/article/details/144246671

相关文章

  • 鼠标 芯片bcm5974 linux驱动程序
    /*AppleUSBBCM5974(MacbookAirandPenrynMacbookPro)multitouchdriverThisprogramisfreesoftware;youcanredistributeitand/ormodifyitunderthetermsoftheGNUGeneralPublicLicenseaspublishedbytheFreeSoftwareFoundation;......
  • IO应用程序接口&设备驱动程序接口
    IO应用程序接口&设备驱动程序接口‍​​‍一、输入/输出应用程序接口背景:在设备独立软件层向上提供各种各样的输入/输出应用程序接口的原因是:用户层的应用程序无法用一个统一的系统调用接囗来完成所有类型设备的I/O​​‍三种输入/输出应用程序接口:字符设备接口块设......
  • 芯片sc2731 linux 驱动程序
    //SPDX-License-Identifier:GPL-2.0/*Copyright©2018SpreadtrumCommunicationsInc.*/#include<linux/module.h>#include<linux/of_address.h>#include<linux/platform_device.h>#include<linux/regmap.h>#include<linux/inp......
  • 电源管理 芯片axp20x linux 驱动程序
    /*axp20xpowerbuttondriver.ThisfileissubjecttothetermsandconditionsoftheGNUGeneralPublicLicense.Seethefile“COPYING”inthemaindirectoryofthisarchiveformoredetails.Thisprogramisdistributedinthehopethatitwill......
  • 游戏杆 芯片db9 linux驱动程序
    /*Copyright©1999-2001VojtechPavlikBasedontheworkof:AndreeBorrmannMatsSjövall*//*Atari,Amstrad,Commodore,Amiga,Sega,etc.joystickdriverforLinux*//*Thisprogramisfreesoftware;youcanredistributeitand/ormodifyit......
  • PowerShell 启用 GPU 加速,可以使用以下方法来设置某个程序的 GPU 加速选项。此操作需
    PowerShell启用GPU加速,可以使用以下方法来设置某个程序的GPU加速选项。此操作需要确保已经为程序选择了正确的GPU设置,并且GPU驱动程序已正确安装。使用PowerShell设置程序GPU加速打开PowerShell,并以管理员身份运行。使用Get-ItemProperty和Set-ItemPrope......
  • 有缘/无缘·蜂鸣器详解文章(内置驱动电路原理图)
    有缘/无缘蜂鸣器二者差别    常见蜂鸣器种类分为,有缘/无缘蜂鸣器,而对于初学者来说使用最多的,也是最常见的就是有缘蜂鸣器,而相较于无缘蜂鸣器二者的差别主要在于,有无内置振荡电路,驱动方式,外围电路的差别。有缘蜂鸣器    有缘蜂鸣器通常在蜂鸣器中内置震荡电......
  • provisionsystemmanifest.exe 是一个命令行工具,主要用于管理和显示 Windows 操作系统
    provisionsystemmanifest.exe用法未提供清单路径。用法:provisionsystemmanifest.exe[/verbose][/manifest<路径>|/displayPackages<标志>[/format<格式>]]/verbose:包含额外的输出,如诊断信息。/manifest:指定要配置的系统清单文件的路径。/displayPackages:指定一个......
  • InfVerif.exe 是一个用于验证 INF 文件的命令行工具,它可以帮助确保这些文件满足特定的
    Microsoft(R)驱动程序包INF验证工具版本10.0.22000.1用法: InfVerif.exe[/v][[/w]|[/u]|[/k]][/info][/stampinf][/l<路径>][/osverTargetOSVersion][/product<ias文件>]<文件列表>/v显示详细的文件日志记录信息。/k报告适用于Windows更新提交......
  • DriverPropertyBagTool.exe 是一个命令行工具,主要用于处理驱动程序的属性包(Property B
    DriverPropertyBagTool.exe是一个命令行工具,主要用于处理驱动程序的属性包(PropertyBag)。它允许用户将不同的数据项添加到属性包中,这些数据项可以是文件、字节数组或是流形式的数据。通过这个工具,你可以创建或更新驱动程序安装过程中使用的属性包,这对于定制化驱动程序部署或者在......