Excerpt | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
This section provides: ·
Sample ModulesWith Noah 4, HIMSA provided a sample module. The module is intended to provide examples of how to access the basic functionality of Noah. They do not consider any audio logistic aspects of module programming. The sample includes a fair level of error handling, but does not take into account error handling, installation or any other aspects of the module regarded as being exemplary or adequate for module development or certification. Noah 4 Printing RequirementsIn Noah 4, the modules can handle printing themselves. The actions can off course be launched with a Print parameter or Print Action Group parameter, if the user wishes to print any of these directly. In order to identify these, just look at the LaunchInfo properties. For further details of LaunchInfo, please refer to the ‘Namespaces,' under 'ModuleAPI Assembly' in the Noah 4 'ModuleAPI.chm' file. Implementing Inter-Module CommunicationInter-module communication (IMC) was introduced in Noah 2.0 as Online Communication. Its purpose is to allow two modules to communicate directly with each other through a well-defined protocol, without using the services of the Noah framework. This form of communication is mainly used by fitting modules to launch and control a Real Ear Measument module.
The Noah IMC protocol 2 is used when a fitting module connects to a Real Ear Measurement module and wishes to receive REM data while fine-tuning a fitting. It is an application-level protocol, that used as an extension to the basic on-line communication facilities supported by the Noah Framework. This protocol was released in November 2015. Available from Inter-Module Communication (IMC) Documentation when logged in as a member, members\development projects, or simply search for IMC. LimitationsIt’s Not possible to start a Noah 4 IMCServer from a Noah 2 module. All other combinations are supported. IMC between Noah 3 and Noah 4 modules in any combination is fully supported from Noah version 4.4.0.2280 Implementing detailsWhen implementing either an IMC Client or an IMC Server in Noah 4 it is important to do the following. Implement either of the IMC interfaces declared in IMCInterfaces.dll, IIMCServerEx or IIMCClient. Don’t implement the interface IIMCServer since the Command method can’t return data. In the Class where you implement the one of the IMC Interfaces, IIMCServer or IIMCClient, the following must be done :
How IMC Works In order for the developer’s module to participate in IMC, an IMC interface must be implemented. The interfaces are in IMCInterfaces.dll One of two types of interfaces can be chosen for implementation:
Precondition The IMC server is registered in Noah as an IMC server with the supported protocols.
Starting IMC The IMC Client and IMC Server will be connected the following way: The module that implements the IIMCClient interface will find the Module it wants to launch by iterating through the ModuleAPI’s module collection. Once the IMC Server is found the Module calls Module.LaunchIMC. The Noah Framework will now launch the IMC Server module. Once the IMC Server gets launched it shall call ModuleAPI.Connect, and a direct reference to the IMC Client is given to the IMC Server module. Remember the IMC Server must use the same ModuleID when calling ModuleAPI.Connect as when I originally registered itself to Noah. The IMC Server now acknowledge the IMC connection by calling IIMCClient.ServerReady. IMC Communication The IMC Client controls the IMC Server by calling IIMCServer.CommandEx (IIMCServer.Command has a bug) If the IMC Server has data for the IMC Client then the IMC Server can call IMCClient.DataReady. IMC End communication The IMC Client calls IIMCServer.Stop() to end the IMC Communication. NOTE: The Noah framework takes no part in the communication between the IMC Client and the IMC Server it is entirely up to the modules to conform to the defined protocols. NOTE: The View Data Protocol was invented in Noah 2.0 as a method for a fitting module to visualize an audiogram while running. This was not possible otherwise, since Noah 2.0 allowed only one module to be shown on the screen at any one time. In Noah 4, an audiogram module can be shown alongside a fitting module, thus enabling the user to view both an audiogram and a fitting at the same time. Therefore HIMSA does not recommend usage of the View Data Protocol for viewing audiograms in Noah 4. NOTE: We strongly recommend that you look through the Noah4 IMC Sample modules, Inter-Module Communication (IMC) Documentation. Session List OverviewWhen a module performs an action, such as a hearing aid fitting, this action is added to a session of the selected patient. The Session list is a list of the selected patient’s sessions and each session represents a calendar day. Each session consists of all the actions; fitting, measurement, journal entries, that have taken place during a patient’s visit. Action descriptionThe name of an action can be divided into two parts: ·Information·Information provided by the Noah system ·Information·Information provided by the module which created the action.
Additional Action InformationIt is possible to mouse over a fitting or hearing instrument selection action so that it supplies additional information provided by the module which created the action. |
Page Comparison
General
Content
Integrations