Moby web log
2018年11月15日 星期四
2018年11月8日 星期四
Visual studio 2013 with installshield package
https://marketplace.visualstudio.com/items?itemName=UnniRavindranathan-MSFT.MicrosoftVisualStudio2013InstallerProjects
the version of 2013, 2015 and 2017 could be downloaded from this URL.
the version of 2013, 2015 and 2017 could be downloaded from this URL.
2018年7月25日 星期三
iOS read MAC address - chinese
https://www.jianshu.com/p/1d6a8fc8134f
1. After connection, read characteristic value
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
{
peripheral.delegate = self;
[peripheral discoverServices:@[[CBUUID UUIDWithString:@"180A"]]];
}
#pragma mark - CBPeripheralDelegate
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error{
CBService *service = peripheral.services.firstObject;
[peripheral discoverCharacteristics:@[[CBUUID UUIDWithString:@"2A23"]] forService:service];
}
2.在扫描的过程中就获取设备的Mac地址
put the address to adv data - key:kCBAdvDataManufacturerData
1. After connection, read characteristic value
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
{
peripheral.delegate = self;
[peripheral discoverServices:@[[CBUUID UUIDWithString:@"180A"]]];
}
#pragma mark - CBPeripheralDelegate
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error{
CBService *service = peripheral.services.firstObject;
[peripheral discoverCharacteristics:@[[CBUUID UUIDWithString:@"2A23"]] forService:service];
}
2.在扫描的过程中就获取设备的Mac地址
put the address to adv data - key:kCBAdvDataManufacturerData
2017年9月17日 星期日
Nordic 52832 - development
Softdevice - nRF52
- S132 SoftDevice
The S132 SoftDevice is a Bluetooth low energy central and peripheral protocol stack solution. It supports up to twenty connections with an additional observer and a broadcaster role all running concurrently. The S132 SoftDevice integrates a Bluetooth low energy Controller and Host, and provides a full and flexible API for building Bluetooth low energy nRF52 System on Chip (SoC) solutions. - S140 SoftDevice
The S140 SoftDevice is a Bluetooth low energy (BLE) Central and Peripheral protocol stack solution that extends the feature set of S132 v3.0 and supports Bluetooth 5. - S212 SoftDevice
The S212 SoftDevice is an ANT™ protocol stack solution that provides a full and flexible Application Programming Interface (API) for building ANT™ System on Chip (SoC) solutions for the nRF52832 chip. The S212 SoftDevice simplifies combining the ANT™ protocol stack and an application on the same CPU. - S332 SoftDevice
The S332 SoftDevice is a combined ANT™ and Bluetooth low energy (BLE) protocol stack solution. It supports all four Bluetooth low energy roles (Central, Peripheral, Observer, Broadcaster) and ANT. - data from Nordic Semiconductor
nRF52832 IC revision | nRF5 SDK | S132 SD | S132 SDS | S212 SD | S212 SDS | S332 SD | S332 SDS |
---|---|---|---|---|---|---|---|
Engineering A | 0.9.x1 | 1.0.0-3.alpha | - | 0.2.0-1.alpha | - | - | - |
Engineering B | 11.0.0-2.alpha | 2.0.0-7.alpha | - | 0.5.1.alpha | - | - | - |
- | 2.0.0-8.alpha | - | 0.6.0.alpha | - | 0.6.0.alpha | - | |
Engineering C, Revision 1 | 11.0.02 | 2.0.x2 | 2.0 | 0.9.x2 | - | 0.9.x2 | - |
12.0.0 | 3.x.x | 3.1 | 2.0.0 | - | 2.0.0 | - | |
12.1.0 | |||||||
12.2.0 | |||||||
13.0.0-1.alpha | 5.0.0-1.alpha | - | |||||
- | 5.0.0-2.alpha | - | - | - | - | - | |
- | 5.0.0-3.alpha | - | - | - | - | - | |
13.0.0 | 4.0.x | 4.1 | 4.0.2 | - | - | - | |
13.1.0 | - | 4.0.2 | - | ||||
14.0.0 | 5.0.0 | 5.0 | - | - | - |
Parent topic: Compatibility Matrix
1 SDK 0.9.x is compatible with nRF52 series only.
2 If workaround for anomaly 73 is implemented, nRF5 SDK 11.0.0 can be used for development purposes together with SoftDevice S132 2.0.0/S212 0.9.x/S332 0.9.x on nRF52832 Engineering B. For more information, see nRF52 Engineering B Errata or nRF5 SDK 11.0.0 release notes.
Parent topic: Compatibility Matrix
1 Packet variant and build code can be read from markings on top of the nRF52 IC.
2016年12月19日 星期一
2016年11月17日 星期四
BLE White List note
1. Chinese article
http://thinkingiot.blogspot.tw/2015/02/ble-security-3-ble-denial-of-service.html
http://www.deyisupport.com/question_answer/wireless_connectivity/bluetooth/f/103/t/87181.aspx
http://e2e.ti.com/support/wireless_connectivity/bluetooth_low_energy/f/538/p/414562/1475140
http://thinkingiot.blogspot.tw/2015/02/ble-security-3-ble-denial-of-service.html
http://www.deyisupport.com/question_answer/wireless_connectivity/bluetooth/f/103/t/87181.aspx
http://e2e.ti.com/support/wireless_connectivity/bluetooth_low_energy/f/538/p/414562/1475140
2016年11月8日 星期二
The difference between .net framework 4.0 and client profile (Chinese)
https://dotblogs.com.tw/regionbbs/2010/03/25/vs2010_net_4_client_profile
訂閱:
文章 (Atom)