Merge pull request #74 from lucianomartin/feature/fix_reset

Fix PLL mask to reset tile - WIP
This commit is contained in:
Ross Owen
2019-01-10 12:05:39 +00:00
committed by GitHub
3 changed files with 4 additions and 3 deletions

View File

@@ -15,6 +15,7 @@ lib_xua Change Log
* RESOLVED: wChannelConfig in UAC1 descriptor set according to output channel
count
* RESOLVED: Indexing of ADAT channel strings (#18059)
* RESOLVED: Rebooting device fails when PLL config "not reset" bit is set
* Changes to dependencies:

View File

@@ -1,4 +1,4 @@
// Copyright (c) 2011-2018, XMOS Ltd, All rights reserved
// Copyright (c) 2011-2019, XMOS Ltd, All rights reserved
#include <xs1.h>
#include <platform.h>
#include <print.h>
@@ -12,7 +12,7 @@
#if (XUD_SERIES_SUPPORT == 4)
#include "xs2_su_registers.h"
#define XS2_SU_PERIPH_USB_ID 0x1
#define PLL_MASK 0x7FFFFFFF
#define PLL_MASK 0x3FFFFFFF
#else
#define PLL_MASK 0xFFFFFFFF
#endif

View File

@@ -32,4 +32,4 @@ def use_module(bld):
depends_on=depends_on,
includes=['api'],
optional_headers='xua_conf.h',
version='1.0.0')
version='0.2.0')