【问题标题】:How does bit flag parameters of a method works (Ansi C/C)?方法的位标志参数如何工作(Ansi C/C)?
【发布时间】:2016-01-25 20:54:16
【问题描述】:

我正在用 C (ANSI C) 编写一个 POS(销售点)

我有这个功能

GetString(uchar *str,uchar mode,uchar minlen,uchar maxlen)

类似于 readln 但在 POS 中

API 中,mode 参数类似于 D1,D2,D3...

但在(API 的)示例中,我有这个

if(!GetString(buf, 0x26, 0, 10)) 
 {
 buf[buf[0]+1]=0; amt=atol(buf+1); 
 } else {
/* user press CANCEL button */ }

那么0x26(函数中的参数mode)和 二进制数或位标志,甚至,我不知道,十六进制。

在 API 中还有另一件事解释了 mode 输入参数

1. Input mode definition: (priority order is bit3>bit4>bit5, and mode&0x38≠0);
2. When inputting, the digit will be displayed on the screen in turns as plaintext or cryptograph (according to bit3).
3. The initial cursor position is determined by ScrGotoxy(x, y).
4. If bit7 of mode =1, then this function could bring initial digit string, and the string is displayed on initial cursor position as input digit string.
5. Output string does not record and contain function keys.
6. Press CLEAR button, if it is plaintext display, then CLEAR is considered as BACKSPACE key; if it is cryptograph display, then CLEAR is considered as the key to clear all contents.
7. Use function key to switch to Capital mode. S80 uses Alpha key to select the corresponding character on a key, however SP30 uses UP and Down key, and T52 uses ―#‖ key, T620 uses key F2.
8. In MT30, the switch method between uppercase, lowercase and number characters is to keep pressing

【问题讨论】:

    标签: c parameters hex flags point-of-sale


    【解决方案1】:

    page you linked 中指定了 8 位标志。在您的示例中,您有十六进制值0x26,它是二进制值00100110。这指定了 8 个位标志,其中 3 个(D1、D2、D5)被设置,5 个(D0、D3、D4、D6、D7)被清除。

    如果您引用链接的表格(这是一个图形,所以我无法粘贴它),它会告诉您 GetString 参数 mode 如何指示函数针对 8 位标志集中的每一个进行行为(1) 或清除 (0)。

    例如D2设置为1表示左对齐

    组合各个标志会得到一个二进制数,在您的示例中,它作为十六进制数 0x26 传递。

    【讨论】:

    • 我知道我的英语不好......但是,为什么我的问题有 -2 分:c 我害怕在 stackOverflow 中丢失我的帐户,你们真的帮助我
    【解决方案2】:

    D1、D2、D3 ... D7 是位。我想它被用作一个位标志。由于它只有 1 个字节,因此它有 8 种可能的状态,所有这些状态都可以组合在一起。

    0x26 是十进制 38 或二进制

    00100110
    

    这意味着 D1、D2、D5 已设置,其他 D 均未设置。

    【讨论】:

    • 我该如何使用它?
    • 了解位标志。一个字节,可以设置8个选项,可以任意组合
    • 好的,我会做的。但为什么是 0x26?什么时候在 API 中说这个值是针对一种或另一种模式的?我只能在示例中看到 0x26。在函数中只说 D1, D2, D6 ?
    • @JonathanZea 0x26 大概等于 D1|D2|D6
    • @FUZxxl 我想你会发现00100110 是位 5,2,1。
    【解决方案3】:

    这将对您有所帮助,我定义了一个宏来操作 D7 位,根据文档是 ENTER 模式的位。

    以同样的方式继续其他模式。

    // bits manipulation
    // idx stand for bit index
    
    #define CHECK_BIT(var,idx)              ((var >> idx) & 1)
    #define SET_BIT(var,idx,n)              (var ^= (-(n?1:0) ^ var) & (1 << idx))
    
    
    // helping macros
    
    // check if Enter mode is set  D7 is used
    #define IS_ENTER_MODE_SET(mode)         CHECK_BIT(mode,7) 
    
    // set Enter mode to opt (true,false)
    #define SET_ENTER_MODE (mode,opt)       SET_BIT(mode,7,opt) 
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2023-03-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-05-26
      相关资源
      最近更新 更多