当前位置: 首页>>代码示例>>Python>>正文


Python Utils.to_int方法代码示例

本文整理汇总了Python中stcgal.utils.Utils.to_int方法的典型用法代码示例。如果您正苦于以下问题:Python Utils.to_int方法的具体用法?Python Utils.to_int怎么用?Python Utils.to_int使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在stcgal.utils.Utils的用法示例。


在下文中一共展示了Utils.to_int方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: set_watchdog_prescale

# 需要导入模块: from stcgal.utils import Utils [as 别名]
# 或者: from stcgal.utils.Utils import to_int [as 别名]
 def set_watchdog_prescale(self, val):
     val = Utils.to_int(val)
     wd_vals = {2: 0, 4: 1, 8: 2, 16: 3, 32: 4, 64: 5, 128: 6, 256: 7}
     if val not in wd_vals.keys():
         raise ValueError("must be one of %s" % list(wd_vals.keys()))
     self.msr[3] &= 0xf8
     self.msr[3] |= wd_vals[val]
开发者ID:grigorig,项目名称:stcgal,代码行数:9,代码来源:options.py

示例2: set_osc_stable_delay

# 需要导入模块: from stcgal.utils import Utils [as 别名]
# 或者: from stcgal.utils.Utils import to_int [as 别名]
 def set_osc_stable_delay(self, val):
     val = Utils.to_int(val)
     osc_vals = {4096: 0, 8192: 1, 16384: 2, 32768: 3}
     if val not in osc_vals.keys():
         raise ValueError("must be one of %s" % list(osc_vals.keys()))
     self.msr[0] &= 0xcf
     self.msr[0] |= osc_vals[val] << 4
开发者ID:grigorig,项目名称:stcgal,代码行数:9,代码来源:options.py

示例3: test_to_int

# 需要导入模块: from stcgal.utils import Utils [as 别名]
# 或者: from stcgal.utils.Utils import to_int [as 别名]
 def test_to_int(self):
     """Test wrapped integer conversion"""
     self.assertEqual(Utils.to_int("2"), 2)
     self.assertEqual(Utils.to_int("0x10"), 16)
     with self.assertRaises(ValueError):
         Utils.to_int("a")
     with self.assertRaises(ValueError):
         Utils.to_int("")
     with self.assertRaises(ValueError):
         Utils.to_int(None)
开发者ID:zerog2k,项目名称:stcgal,代码行数:12,代码来源:test_utils.py

示例4: set_flash_split

# 需要导入模块: from stcgal.utils import Utils [as 别名]
# 或者: from stcgal.utils.Utils import to_int [as 别名]
 def set_flash_split(self, val):
     num_val = Utils.to_int(val)
     if num_val < 512 or num_val > 65024 or (num_val % 512) != 0:
         raise ValueError("must be between 512 and 65024 bytes and a multiple of 512 bytes")
     self.msr[4] = num_val // 256
开发者ID:grigorig,项目名称:stcgal,代码行数:7,代码来源:options.py

示例5: set_low_voltage

# 需要导入模块: from stcgal.utils import Utils [as 别名]
# 或者: from stcgal.utils.Utils import to_int [as 别名]
 def set_low_voltage(self, val):
     val = Utils.to_int(val)
     if val not in range(0, 4):
         raise ValueError("must be one of %s" % list(range(0, 4)))
     self.msr[2] &= 0xfc
     self.msr[2] |= 3 - val
开发者ID:grigorig,项目名称:stcgal,代码行数:8,代码来源:options.py


注:本文中的stcgal.utils.Utils.to_int方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。