readme.txt
来自「pbap_server:bluetooth 可供带有PBAP功能bluetoot」· 文本 代码 · 共 55 行
TXT
55 行
Pbap Server Application
=======================
This application is a demonstration of PBAP Server functionality using the Read Only Filestore to simulate the phonebook stored on a phone.
Code Modules
============
Module Description
----------------------------------------
handle_pbap PBAP message handlers
folder Folder management
vcard_gen vcard generator
pb_access Phonebook access
Supported Phonebooks
====================
The server does not contain a SIM1 repository. Each phonebook is stored in a file in the image directory of the project. The filename identifies the phonebook.
Filename Description
-----------------------------------
pb.dat Main phonebook
ich.dat Incomming Call History
och.dat Outgoing Call History
mch.dat Missed Call History
cch.dat Combined Call History
The example application contains examples of the main phonebook (pb.dat) and Incomming Call History (ich.dat).
Phonebook File Format
=====================
A phonebook file only stores Name and Phonenumber entries. The file is textual. Each entry may contain a name field. It may also contain upto 3 phonenumbers (phonenumber, mobile number and business number). It does not need to contain any phonenumbers.
Each field contains an identifier and the data. The field is terminated by a newline '\n'. The data is a string. The string is NOT null terminated. The entry is terminated by a 'n' without an entry.
Identifier Description
--------------------------------
N Name
P Phone number
M Mobile number
B Business number
Example
Name : Cardoso;Jose
Phonenumber : +44156986333
This is represented as :-
NCardoso;Jose'\n'P+44156986333'\n\n'
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?