Go to the previous, next section.

Initialization

It is possible to initialize AA-lib in various modes. The main initialization is done by function
aa_context *aa_init(struct aa_driver *driver, 
                    struct aa_hardware_params *defparams, 
                    void *driverdata)

This function prepares aa_context * type variable used by all AA-lib functions.

aa_close(aa_context *context)

This function also closes the context and uninitializes current driver.

Go to the previous, next section.