3268|4

66

帖子

1

TA的资源

一粒金砂(初级)

楼主
 

一个例子看不明白 [复制链接]

/*
打问号的地方不明白,希望大家给加下注释,谢谢了
这是一个蜂鸣器的程序(运行在arm9(mini2440)上的Linux下)
*/
#include
#include
#include
#include

#define PWM_IOCTL_SET_FREQ                1
#define PWM_IOCTL_STOP                        2

#define        ESC_KEY                0x1b

static int getch(void)
{
        struct termios oldt,newt;
        int ch;

        if (!isatty(STDIN_FILENO)) {
                fprintf(stderr, "this problem should be run at a terminal\n");
                exit(1);
        }
        // save terminal setting
        if(tcgetattr(STDIN_FILENO, &oldt) < 0) {
                perror("save the terminal setting");
                exit(1);
        }

        // set terminal as need
        newt = oldt;
        newt.c_lflag &= ~( ICANON | ECHO );//???为什么设置为除了这两个属性外的其他所有属性
        if(tcsetattr(STDIN_FILENO,TCSANOW, &newt) < 0) {
                perror("set terminal");
                exit(1);
        }

        ch = getchar();

        // restore termial setting
        if(tcsetattr(STDIN_FILENO,TCSANOW,&oldt) < 0) {
                perror("restore the termial setting");
                exit(1);
        }
        return ch;
}

static int fd = -1;
static void close_buzzer(void);
static void open_buzzer(void)
{
        fd = open("/dev/pwm", 0);
        if (fd < 0) {
                perror("open pwm_buzzer device");
                exit(1);
        }

        // any function exit call will stop the buzzer
        atexit(close_buzzer);
}

static void close_buzzer(void)
{
        if (fd >= 0) {
                ioctl(fd, PWM_IOCTL_STOP);
                close(fd);
                fd = -1;
        }
}

static void set_buzzer_freq(int freq)
{
        // this IOCTL command is the key to set frequency
        int ret = ioctl(fd, PWM_IOCTL_SET_FREQ, freq);//???ioctl函数的功能和参数的含义(第二个和第三个参数)?
        if(ret < 0) {
                perror("set the frequency of the buzzer");
                exit(1);
        }
}
static void stop_buzzer(void)
{
        int ret = ioctl(fd, PWM_IOCTL_STOP);//功能????
        if(ret < 0) {
                perror("stop the buzzer");
                exit(1);
        }
}

int main(int argc, char **argv)
{
        int freq = 1000 ;
       
        open_buzzer();

        printf( "\nBUZZER TEST ( PWM Control )\n" );
        printf( "Press +/- to increase/reduce the frequency of the BUZZER\n" ) ;
        printf( "Press 'ESC' key to Exit this program\n\n" );
       
       
        while( 1 )
        {
                int key;

                set_buzzer_freq(freq);
                printf( "\tFreq = %d\n", freq );

                key = getch();

                switch(key) {
                case '+':
                        if( freq < 20000 )
                                freq += 10;
                        break;

                case '-':
                        if( freq > 11 )
                                freq -= 10 ;
                        break;

                case ESC_KEY:
                case EOF:
                        stop_buzzer();
                        exit(0);

                default:
                        break;
                }
        }
}

最新回复

ioctl是程序员可以自己设定的功能,可以定义自己的消息进行处理.  详情 回复 发表于 2009-7-17 15:48
点赞 关注

回复
举报

68

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
ioctl是用户态操作内核态设备驱动的接口,随便翻本Linux设备驱动的书都会讲的很清楚。
 
 

回复

89

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
ioctl是具有固定的功能,还是由驱动程序觉得它的功能,或者说是在驱动中自由的实现它?
引用 1 楼 TheSaviour 的回复:
ioctl是用户态操作内核态设备驱动的接口,随便翻本Linux设备驱动的书都会讲的很清楚。
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(初级)

4
 
学习
 
 
 

回复

72

帖子

0

TA的资源

一粒金砂(初级)

5
 
ioctl是程序员可以自己设定的功能,可以定义自己的消息进行处理.
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表