Lines Matching refs:layer
3 The HAL layer is designed to be used by the drivers. We don't guarantee the stability and back-comp…
4 versions. The HAL layer may update very frequently with the driver. Please don't use them in the ap…
7 The HAL layer consists of two layers: HAL (upper) and Lowlevel(bottom). The HAL layer defines the s…
8 required by the peripheral. The lowlevel is a translation layer converting general conceptions to r…
12 This layer should be all static inline. The first argument of LL functions is usually a pointer to …
13 of the peripheral register. Each chip should have its own LL layer. The functions in this layer sho…
14 independent from each other so that the upper layer can change/perform one of the options/operation…
19 This layer should depend on the operating system as little as possible. It's a wrapping of LL funct…
20 layer can combine basic steps into different working ways (polling, non-polling, interrupt, etc.). …
21 queues/locks/delay/loop/etc., this layer can be easily port to other os or simulation systems.
25 To develop your own driver, it is suggested to copy the HAL layer to your own code and keep them un…