summaryrefslogtreecommitdiff
path: root/cesar/bsu/beacon
diff options
context:
space:
mode:
authorlaranjeiro2010-05-17 09:38:42 +0000
committerlaranjeiro2010-05-17 09:38:42 +0000
commit124c58f4dd32f5185fe165a16dfd1969da894e06 (patch)
tree5cae35cc69abaae585a52039749cd90c0aad2f6f /cesar/bsu/beacon
parent8c7a01c0052495f7887c36f862f7ae834aaafe49 (diff)
cesar/bsu: changed callback to send beacon to CP
bsu_beacon_params_t is now bsu_params_t which contains: * direction, TO PLC or FROM PLC. * frequency error as a 32bits with fixed point (30 bits after the dot). * tick offset corresponding to the offset of the NTB clock with the phy_date clock. git-svn-id: svn+ssh://pessac/svn/cesar/trunk@7035 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/bsu/beacon')
-rw-r--r--cesar/bsu/beacon/beacon.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/cesar/bsu/beacon/beacon.h b/cesar/bsu/beacon/beacon.h
index 82c1b5c2bb..519bcd1489 100644
--- a/cesar/bsu/beacon/beacon.h
+++ b/cesar/bsu/beacon/beacon.h
@@ -121,18 +121,6 @@ struct bsu_beacon_bmi_t
};
typedef struct bsu_beacon_bmi_t bsu_beacon_bmi_t;
-/** beacon computed parameters. */
-struct bsu_beacon_params_t
-{
- /** Beacon period start date. */
- u32 bpsd_date [4];
- /** Frequency error. */
- u32 frequency_error;
- /** Tick offset, difference between the NTB and PHY Date clock. */
- u32 tick_offset;
-};
-typedef struct bsu_beacon_params_t bsu_beacon_params_t;
-
/** beacon description structure. */
struct bsu_beacon_t
{
@@ -142,8 +130,6 @@ struct bsu_beacon_t
bsu_beacon_variant_fields_t vf;
/** Beacon Management Information. */
bsu_beacon_bmi_t bmis;
- /** Beacon parameters. */
- bsu_beacon_params_t bsu_params;
};
typedef struct bsu_beacon_t bsu_beacon_t;