📄 readme.txt
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -