line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# |
2
|
|
|
|
|
|
|
# $Id: BCM2835.pm 60 2018-09-18 01:47:22Z stro $ |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Alien::BCM2835; |
6
|
|
|
|
|
|
|
|
7
|
2
|
|
|
2
|
|
1338
|
use strict; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
57
|
|
8
|
2
|
|
|
2
|
|
10
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
61
|
|
9
|
|
|
|
|
|
|
|
10
|
2
|
|
|
2
|
|
861
|
use parent 'Alien::Base'; |
|
2
|
|
|
|
|
600
|
|
|
2
|
|
|
|
|
12
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our $VERSION = '1.056'; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# ABSTRACT: Alien installation of bcm2835 library |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
#pod =head1 NAME |
19
|
|
|
|
|
|
|
#pod |
20
|
|
|
|
|
|
|
#pod Alien::BCM2835 |
21
|
|
|
|
|
|
|
#pod |
22
|
|
|
|
|
|
|
#pod =head1 VERSION |
23
|
|
|
|
|
|
|
#pod |
24
|
|
|
|
|
|
|
#pod 1.056 |
25
|
|
|
|
|
|
|
#pod |
26
|
|
|
|
|
|
|
#pod =head1 DESCRIPTION |
27
|
|
|
|
|
|
|
#pod |
28
|
|
|
|
|
|
|
#pod This module download and builds external bcm2835 library. |
29
|
|
|
|
|
|
|
#pod |
30
|
|
|
|
|
|
|
#pod bcm2835 is the Broadcom BCM2835 library that provides access to GPIO and other functions on the Broadcom BCM 2835 |
31
|
|
|
|
|
|
|
#pod chip, as used in Raspberry Pi. |
32
|
|
|
|
|
|
|
#pod |
33
|
|
|
|
|
|
|
#pod You can use L to access GPIO and other functions on Raspberry Pi. |
34
|
|
|
|
|
|
|
#pod |
35
|
|
|
|
|
|
|
#pod http://www.airspayce.com/mikem/bcm2835/ |
36
|
|
|
|
|
|
|
#pod |
37
|
|
|
|
|
|
|
#pod =head1 AUTHOR |
38
|
|
|
|
|
|
|
#pod |
39
|
|
|
|
|
|
|
#pod Serguei Trouchelle E |
40
|
|
|
|
|
|
|
#pod |
41
|
|
|
|
|
|
|
#pod =cut |