diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..76bdad6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{md,yml,yaml}] +trim_trailing_whitespace = false + +[*.py] +indent_style = space +indent_size = 4 +max_line_length = 100 + +[*.{c,h}] +indent_style = space +indent_size = 4 + +[Makefile] +indent_style = tab diff --git a/.gitattributes b/.gitattributes index 412eeda..5baa5be 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,22 +1,34 @@ -# Auto detect text files and perform LF normalization -* text=auto +* text=auto eol=lf -# Custom for Visual Studio -*.cs diff=csharp -*.sln merge=union -*.csproj merge=union -*.vbproj merge=union -*.fsproj merge=union -*.dbproj merge=union +*.bat text eol=crlf +*.cmd text eol=crlf -# Standard to msysgit -*.doc diff=astextplain -*.DOC diff=astextplain -*.docx diff=astextplain -*.DOCX diff=astextplain -*.dot diff=astextplain -*.DOT diff=astextplain -*.pdf diff=astextplain -*.PDF diff=astextplain -*.rtf diff=astextplain -*.RTF diff=astextplain +*.Cam binary +*.Dat binary +*.IntLib binary +*.LibPkg binary +*.PCBDBLib binary +*.PCBLIB binary +*.PcbDoc binary +*.SCHLIB binary +*.SchDoc binary +*.Slx binary +*.apr binary +*.bin binary +*.doc binary +*.docx binary +*.elf binary +*.jpg binary +*.pdf binary +*.png binary +*.rar binary +*.slx binary +*.vi binary +*.xls binary +*.xlsx binary +*.zip binary + +*.md diff=markdown +*.py diff=python +*.c diff=cpp +*.h diff=cpp diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..75523eb --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,7 @@ +* @ddtdanilo + +/MCU Firmware/ @ddtdanilo +/PCB/ @ddtdanilo +/tools/ @ddtdanilo +/docs/ @ddtdanilo +/.github/ @ddtdanilo diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..d2edee1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,58 @@ +name: Bug report +description: Report a reproducible problem in maintained tooling or documentation. +title: "[Bug]: " +labels: + - bug +body: + - type: markdown + attributes: + value: | + Do not include credentials, private telemetry, personal data, or unsafe hardware instructions. + - type: dropdown + id: area + attributes: + label: Area + options: + - Protocol tools + - Documentation + - Repository automation + - Historical artifact + validations: + required: true + - type: input + id: version + attributes: + label: Commit or release + placeholder: v1.0.0 or commit SHA + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: What happened, and what did you expect? + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: Reproduction + description: Provide minimal, safe steps and sanitized input. + validations: + required: true + - type: textarea + id: environment + attributes: + label: Environment + description: Operating system, Python or vendor-tool version, and hardware state. + validations: + required: true + - type: checkboxes + id: safety + attributes: + label: Safety confirmation + options: + - label: I removed secrets, personal data, and sensitive telemetry. + required: true + - label: This report does not require anyone to energize unrestrained hardware. + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..f09f3c1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Questions and archival discussion + url: https://github.com/X-Sub/Telemetry-System/discussions + about: Ask questions and discuss historical context. + - name: Private security report + url: https://github.com/X-Sub/Telemetry-System/security/advisories/new + about: Report security or safety-sensitive issues privately. diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 0000000..24f7383 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,36 @@ +name: Feature request +description: Suggest an improvement to maintained tools or documentation. +title: "[Enhancement]: " +labels: + - enhancement +body: + - type: dropdown + id: area + attributes: + label: Area + options: + - Protocol tools + - Documentation + - Archive preservation + - Repository automation + validations: + required: true + - type: textarea + id: problem + attributes: + label: Problem + description: What need would this solve? + validations: + required: true + - type: textarea + id: proposal + attributes: + label: Proposed change + description: Describe the smallest useful solution. + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Alternatives and safety considerations + description: What else was considered, and could this affect physical hardware? diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d6026b5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: monthly + open-pull-requests-limit: 5 + labels: + - dependencies + - automation + commit-message: + prefix: "chore(deps)" diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..75123c0 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,26 @@ +## Summary + + + +## Scope + +- [ ] Maintained Python tooling +- [ ] Documentation or repository automation +- [ ] Legacy firmware +- [ ] PCB or fabrication artifacts +- [ ] LabVIEW, Simulink, or other binary artifacts + +## Validation + +- [ ] `ruff check tools tests scripts` +- [ ] `ruff format --check tools tests scripts` +- [ ] `python -m unittest discover -s tests -v` +- [ ] `python scripts/verify_repository.py` +- [ ] `git diff --check` +- [ ] Relevant proprietary-tool checks, or an explanation of why they were unavailable + +## Safety and integrity + +- [ ] No credentials, private telemetry, personal data, or license keys are included +- [ ] Hardware implications and limitations are documented +- [ ] `docs/ASSET_MANIFEST.sha256` was updated if a listed artifact changed diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..e83030a --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,25 @@ +changelog: + exclude: + labels: + - skip-changelog + categories: + - title: "Breaking changes" + labels: + - breaking-change + - title: "Features" + labels: + - enhancement + - title: "Fixes" + labels: + - bug + - title: "Documentation" + labels: + - documentation + - title: "Maintenance" + labels: + - dependencies + - automation + - maintenance + - title: "Other changes" + labels: + - "*" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..d962e6a --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,42 @@ +name: CodeQL + +on: + push: + branches: + - main + - master + pull_request: + branches: + - main + - master + schedule: + - cron: "23 7 * * 1" + workflow_dispatch: + +permissions: + contents: read + security-events: write + +concurrency: + group: codeql-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + analyze: + name: Analyze (Python) + runs-on: ubuntu-latest + timeout-minutes: 15 + steps: + - name: Check out repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 + + - name: Initialize CodeQL + uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 + with: + languages: python + queries: security-extended + + - name: Analyze + uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 + with: + category: /language:python diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml new file mode 100644 index 0000000..1cec6d1 --- /dev/null +++ b/.github/workflows/quality.yml @@ -0,0 +1,84 @@ +name: Repository checks + +on: + push: + branches: + - main + - master + pull_request: + branches: + - main + - master + workflow_dispatch: + +permissions: + contents: read + +concurrency: + group: quality-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + lint: + name: Lint and format + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Check out repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 + + - name: Set up Python + uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 + with: + python-version: "3.14" + cache: pip + + - name: Install development tools + run: python -m pip install --requirement requirements-dev.txt + + - name: Run Ruff + run: | + ruff check tools tests scripts + ruff format --check tools tests scripts + + test: + name: Test (Python ${{ matrix.python-version }}) + runs-on: ubuntu-latest + timeout-minutes: 10 + strategy: + fail-fast: false + matrix: + python-version: + - "3.11" + - "3.14" + steps: + - name: Check out repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 + + - name: Set up Python + uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 + with: + python-version: ${{ matrix.python-version }} + + - name: Run unit tests + run: python -m unittest discover -s tests -v + + - name: Verify repository + run: python scripts/verify_repository.py + + gate: + name: CI gate + if: always() + needs: + - lint + - test + runs-on: ubuntu-latest + timeout-minutes: 5 + steps: + - name: Require successful jobs + env: + LINT_RESULT: ${{ needs.lint.result }} + TEST_RESULT: ${{ needs.test.result }} + run: | + test "$LINT_RESULT" = "success" + test "$TEST_RESULT" = "success" diff --git a/.gitignore b/.gitignore index 96374c4..32dd652 100644 --- a/.gitignore +++ b/.gitignore @@ -1,43 +1,48 @@ -# Windows image file caches +# Operating systems +.DS_Store +._* Thumbs.db -ehthumbs.db - -# Folder config file Desktop.ini - -# Recycle Bin used on file shares $RECYCLE.BIN/ - -# Windows Installer files -*.cab -*.msi -*.msm -*.msp - -# Windows shortcuts -*.lnk - -# ========================= -# Operating System Files -# ========================= - -# OSX -# ========================= - -.DS_Store -.AppleDouble -.LSOverride - -# Thumbnails -._* - -# Files that might appear on external disk -.Spotlight-V100 -.Trashes - -# Directories potentially created on remote AFP share -.AppleDB -.AppleDesktop -Network Trash Folder -Temporary Items -.apdisk +.Spotlight-V100/ +.Trashes/ + +# Python +__pycache__/ +*.py[cod] +.pytest_cache/ +.ruff_cache/ +.coverage +htmlcov/ +.venv/ +venv/ +*.egg-info/ +build/ +dist/ + +# Temporary workspace +tmp/ +*.log +*.tmp +*.bak +*~ + +# Eclipse / CodeWarrior workspace state +.metadata/ +RemoteSystemsTempFiles/ +RemoteLaunch/results/ + +# Altium transient data +History/ +Project\ Logs\ for\ */ +__Previews/ +*.SchDocPreview +*.PcbDocPreview +*.autosave + +# MATLAB / Simulink generated data +slprj/ +*.slxc + +# Runtime data +logger.txt diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..118e600 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,64 @@ +# AGENTS.md + +## Purpose + +This repository preserves the X-Sub telemetry-system degree project. Changes +must improve discoverability, safety, reproducibility, or the modern inspection +tools without rewriting historical evidence. + +## Repository map + +- `MCU Firmware/`: legacy Freescale MCF51QE128 projects. +- `PCB/`: Altium source and fabrication artifacts. +- `Python Data Receiver-Transmitter/`: original Python 3.4 experiments. +- `LabView Visualizer/`: original LabVIEW operator interface. +- `Spectrum Analyser/`: original Simulink and Arduino experiments. +- `tools/`: maintained, dependency-free Python protocol tools. +- `tests/`: tests for maintained Python code. +- `docs/`: current English documentation and integrity manifest. + +## Ground rules + +1. Treat the original engineering artifacts as read-only unless a task + explicitly requires a reviewed hardware or firmware correction. +2. Never regenerate or normalize proprietary binary files casually. +3. Never commit IDE workspaces, Altium history, previews, autosaves, logs, + bytecode, credentials, or captured operational telemetry. +4. Put new maintained tooling in `tools/`, use Python 3.11+, type hints, and the + standard library unless a dependency has a clear benefit. +5. Keep public documentation in English. Preserve original Spanish text inside + historical source and the thesis. +6. Clearly separate measured facts, thesis-derived facts, and assumptions. +7. Do not claim that the archived vehicle stack is production-ready. + +## Required checks + +Run before every commit: + +```bash +python -m pip install --requirement requirements-dev.txt +ruff check tools tests scripts +ruff format --check tools tests scripts +python -m unittest discover -s tests -v +python scripts/verify_repository.py +git diff --check +``` + +If a primary artifact intentionally changes, update +`docs/ASSET_MANIFEST.sha256` in the same commit and explain why in the pull +request. + +## Hardware safety + +Do not instruct users to energize thrusters or battery systems without current +limits, a physical emergency stop, restrained hardware, and qualified +supervision. Treat all archived calibration and electrical limits as +unverified. + +## Pull requests + +- Use focused, signed commits and Conventional Commit subjects. +- Explain affected artifacts and tool versions. +- Include validation evidence and note any checks that require proprietary + software. +- Never bypass branch protection or required checks. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..120fd54 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,30 @@ +# Changelog + +All notable repository-maintenance changes are documented here. + +## [1.0.0] - 2026-07-25 + +### Added + +- Complete English documentation for architecture, protocol, hardware, safety, + contribution, support, citation, and historical status. +- Dependency-free Python 3.11+ telemetry decoder and command encoder. +- Unit tests and repository-integrity validation. +- GitHub Actions CI, CodeQL analysis, issue forms, pull-request template, + Dependabot, and ownership metadata. +- Integrity hashes for primary historical artifacts. +- Explicit MIT license for original repository contributions and third-party + notices. + +### Changed + +- Reframed the project as a preserved historical research archive. +- Expanded ignore and attribute rules for mixed software and engineering files. + +### Removed + +- IDE workspace caches, Altium history snapshots and previews, transient project + logs, Python bytecode, runtime logs, autosaves, and an accidental commit-message + file from the current branch. + +The removed data remains available in Git history. diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..9423854 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,20 @@ +cff-version: 1.2.0 +message: "If you use this archive, please cite the thesis and repository." +title: "X-Sub Telemetry System" +type: software +authors: + - family-names: "Díaz Tarascó" + given-names: "Danilo" +repository-code: "https://github.com/X-Sub/Telemetry-System" +license: MIT +version: 1.0.0 +date-released: 2026-07-25 +preferred-citation: + type: thesis + title: "Desarrollo de sistema de telemetría para teleoperación de robot submarino" + authors: + - family-names: "Díaz Tarascó" + given-names: "Danilo" + institution: + name: "Universidad Simón Bolívar" + year: 2016 diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..202050a --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,23 @@ +# CLAUDE.md + +Read and follow [`AGENTS.md`](AGENTS.md) before making changes. + +This is a historical, hardware-adjacent repository. Preserve original research +artifacts, avoid speculative rewrites, and keep new documentation in English. +The maintained surface is the dependency-free Python protocol utility in +`tools/`, its tests, repository checks, and documentation. + +Before proposing a change, run: + +```bash +python -m pip install --requirement requirements-dev.txt +ruff check tools tests scripts +ruff format --check tools tests scripts +python -m unittest discover -s tests -v +python scripts/verify_repository.py +git diff --check +``` + +Never place credentials, real mission telemetry, personal data, or proprietary +tool licenses in the repository. Never describe the legacy control stack as +safe for unattended or production operation. diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..f9197df --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,25 @@ +# Contributor Covenant Code of Conduct + +## Our pledge + +We pledge to make participation in this project a harassment-free experience +for everyone, regardless of age, body size, disability, ethnicity, sex +characteristics, gender identity and expression, level of experience, +education, socioeconomic status, nationality, personal appearance, race, +religion, or sexual identity and orientation. + +## Expected behavior + +Be respectful, accept constructive feedback, focus on evidence, and show +empathy toward other contributors. Do not use sexualized language, harass +others, publish private information, or engage in conduct inappropriate for a +professional setting. + +## Enforcement + +Report unacceptable behavior privately to the repository maintainers through +the contact options on the organization profile. Maintainers may remove, +edit, or reject contributions and may temporarily or permanently restrict +participation when behavior is inappropriate, threatening, or harmful. + +This policy is adapted from Contributor Covenant 2.1. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..e7a1a23 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,57 @@ +# Contributing + +Thank you for helping preserve and explain the X-Sub telemetry system. + +## Before opening a change + +Use an issue to discuss changes to firmware behavior, PCB connectivity, +manufacturing data, protocol semantics, or licensing. Documentation corrections +and isolated maintenance-tool fixes may go directly to a pull request. + +## Development setup + +The maintained validation surface requires Python 3.11 or newer and has no +third-party runtime dependencies. + +```bash +git clone https://github.com/X-Sub/Telemetry-System.git +cd Telemetry-System +python -m pip install --requirement requirements-dev.txt +ruff check tools tests scripts +ruff format --check tools tests scripts +python -m unittest discover -s tests -v +python scripts/verify_repository.py +``` + +Legacy artifacts require their original or compatible proprietary tools. See +[`docs/HARDWARE.md`](docs/HARDWARE.md). A successful modern Python test run does +not validate the firmware, PCB, LabVIEW, or Simulink projects. + +## Change policy + +- Preserve historical files unless the change has a documented archival reason. +- Place maintained Python code in `tools/` and tests in `tests/`. +- Keep new user-facing prose, names, identifiers, and comments in English. +- Avoid dependencies when the standard library is sufficient. +- Add tests for protocol behavior, including invalid lengths and terminators. +- Update documentation and the changelog with behavior changes. +- Update the asset manifest only for intentional changes to listed artifacts. + +## Commit and pull-request style + +Use Conventional Commit subjects, for example: + +```text +docs: clarify command-frame byte layout +fix(protocol): reject out-of-range actuator values +``` + +Every pull request should explain: + +- why the change is needed; +- which maintained or historical artifacts it touches; +- how it was validated; +- whether proprietary tools or physical hardware were unavailable. + +By participating, you agree to follow the +[`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md). diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7fc43c0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2015-2026 Danilo Díaz Tarascó + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/MCU Firmware/.metadata/.bak_0.log b/MCU Firmware/.metadata/.bak_0.log deleted file mode 100644 index 7b52d4d..0000000 --- a/MCU Firmware/.metadata/.bak_0.log +++ /dev/null @@ -1,57780 +0,0 @@ -!SESSION 2015-08-26 09:50:50.508 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-08-26 09:50:52.839 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-08-26 09:51:01.112 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-08-26 09:51:01.129 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-08-26 09:51:01.136 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-08-26 09:51:01.141 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-26 09:51:04.057 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-26 09:51:04.107 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-26 09:51:04.143 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-08-26 09:51:04.201 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-08-26 09:51:04.206 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-08-26 09:51:04.587 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-08-26 09:51:04.605 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.processorexpert.core 1 0 2015-08-26 09:51:09.070 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-26 09:51:10.676 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-26 09:51:10.739 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-26 09:51:10.801 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY org.eclipse.cdt.core 1 0 2015-08-26 09:53:07.354 -!MESSAGE Indexed 'IMU I2C Code Test' (7 sources, 17 headers) in 1.95 sec: 3,613 declarations; 3,288 references; 0 unresolved inclusions; 1 syntax errors; 1 unresolved names (0.01%) - -!ENTRY org.eclipse.cdt.core 1 0 2015-08-26 09:53:11.211 -!MESSAGE Indexed 'X-Sub MCU Firmware' (27 sources, 36 headers) in 2.68 sec: 4,351 declarations; 5,472 references; 0 unresolved inclusions; 3 syntax errors; 1 unresolved names (0.01%) - -!ENTRY org.eclipse.cdt.core 1 0 2015-08-26 09:53:12.613 -!MESSAGE Indexed 'test2' (10 sources, 29 headers) in 1.39 sec: 4,237 declarations; 4,702 references; 0 unresolved inclusions; 1 syntax errors; 1 unresolved names (0.01%) - -!ENTRY org.eclipse.cdt.core 1 0 2015-08-26 09:53:14.086 -!MESSAGE Indexed 'test1' (6 sources, 16 headers) in 1.43 sec: 3,555 declarations; 2,952 references; 0 unresolved inclusions; 1 syntax errors; 1 unresolved names (0.02%) - -!ENTRY org.eclipse.osgi 2 1 2015-08-26 09:53:16.570 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-08-26 09:53:16.576 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@12ca045, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@12ca045, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@ce292e, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@ce292e, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@f1b266, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@f1b266, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1f7817e, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1f7817e, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@56a557, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@56a557, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@80f707, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@80f707, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@da2645, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@da2645, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@68de3, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@68de3, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-08-26 09:53:16.921 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@4d4282, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@4d4282, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SESSION 2015-08-28 17:18:41.534 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-08-28 17:18:49.863 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-08-28 17:19:04.331 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-08-28 17:19:04.362 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-08-28 17:19:04.369 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-08-28 17:19:04.375 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2015-08-28 17:19:04.550 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-28 17:19:09.002 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-28 17:19:09.064 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-28 17:19:09.119 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-08-28 17:19:23.516 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2015-08-28 17:19:23.848 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-08-28 17:19:23.877 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-28 17:19:23.942 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-28 17:19:23.993 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-08-28 17:19:24.047 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-08-28 17:19:34.800 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-08-28 17:19:34.821 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-08-28 17:19:37.446 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-08-28 17:19:37.474 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist -!SESSION 2015-09-09 10:30:17.863 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-09-09 10:30:22.318 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.processorexpert.core 1 0 2015-09-09 10:30:30.138 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-09-09 10:30:46.660 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-09-09 10:30:46.766 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-09-09 10:30:46.799 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-09-09 10:30:46.904 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-09 10:30:50.108 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-09 10:30:50.158 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-09 10:30:50.198 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-09 10:30:54.872 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-09 10:30:54.902 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-09 10:30:54.972 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-09-09 10:31:10.522 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-09-09 10:31:10.532 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-09-09 10:31:11.872 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-09-09 10:31:11.872 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist -!SESSION 2015-09-16 09:06:42.813 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-09-16 09:06:47.306 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.processorexpert.core 1 0 2015-09-16 09:06:53.080 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-09-16 09:07:10.682 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-09-16 09:07:10.698 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-09-16 09:07:10.730 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-09-16 09:07:10.742 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-16 09:07:14.254 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-16 09:07:14.300 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-16 09:07:14.339 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-16 09:07:20.117 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-16 09:07:20.158 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-09-16 09:07:20.200 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@104b646, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@104b646, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@5ac6ce, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@5ac6ce, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1b21521, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1b21521, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@8968f8, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@8968f8, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@14aa766, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@14aa766, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@342475, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@342475, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@145aa90, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@145aa90, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@c0f87e, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@c0f87e, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-09-16 09:07:22.872 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@fa302c, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@fa302c, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-09-16 09:07:37.405 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-09-16 09:07:37.410 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-09-16 09:07:39.346 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-09-16 09:07:39.351 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist -!SESSION 2015-10-09 09:58:47.427 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 09:58:51.917 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-09 09:58:58.104 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-09 09:59:14.129 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-09 09:59:14.824 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-09 09:59:14.928 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-09 09:59:14.991 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 09:59:18.583 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 09:59:18.698 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 09:59:18.787 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 09:59:25.285 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 09:59:25.345 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 09:59:25.390 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-09 09:59:39.781 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-09 09:59:39.786 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-09 09:59:41.153 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-09 09:59:41.157 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 09:59:46.740 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 09:59:46.747 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 09:59:46.753 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 09:59:46.758 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 09:59:46.763 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 09:59:46.768 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-09 09:59:58.118 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:00:01.760 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:00:01.765 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.debug.core 4 2 2015-10-09 10:32:54.859 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2015-10-09 10:32:54.867 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 2 2015-10-09 10:32:54.944 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2015-10-09 10:32:54.949 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SESSION 2015-10-09 10:44:12.606 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:44:17.399 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-09 10:44:23.562 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-09 10:44:38.521 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-09 10:44:38.538 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-09 10:44:38.575 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-09 10:44:38.586 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 10:44:43.326 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 10:44:43.407 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 10:44:43.605 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 10:44:50.621 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 10:44:50.682 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-09 10:44:50.740 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-09 10:44:52.262 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-09 10:44:52.272 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-09 10:44:54.196 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-09 10:44:54.201 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:46:27.344 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:46:27.349 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:46:59.786 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:46:59.792 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:46:59.796 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:46:59.801 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:46:59.805 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-09 10:46:59.809 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-09 10:47:08.379 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.debug.core 4 2 2015-10-09 12:19:48.739 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2015-10-09 12:19:48.748 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 2 2015-10-09 12:19:48.828 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2015-10-09 12:19:48.834 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-09 12:19:50.690 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-09 12:19:50.700 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SESSION 2015-10-10 10:25:44.392 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:25:48.617 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:25:56.379 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:25:56.389 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:25:56.389 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:25:56.399 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:25:56.399 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:25:56.409 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-10 10:25:59.535 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-10 10:25:59.545 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-10 10:25:59.545 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-10 10:25:59.555 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-10 10:25:59.975 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-10 10:26:02.976 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-10 10:26:03.006 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-10 10:26:03.046 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-10 10:26:04.689 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:26:04.919 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-10 10:26:04.939 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-10 10:26:05.219 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-10 10:26:05.309 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-10 10:26:05.379 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-10 10:26:17.686 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-10 10:26:17.696 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-10 10:26:19.156 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-10 10:26:19.166 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-10 10:42:51.215 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:42:54.854 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-10 10:42:54.864 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-10 10:46:31.539 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.cdt.debug.core 4 5010 2015-10-10 10:46:31.550 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-10 10:47:31.084 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-10 10:47:37.805 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-10 10:47:37.806 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-10 10:47:56.049 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-10 10:49:41.781 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-10 11:04:08.874 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-10 11:08:54.117 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-10 11:17:36.763 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 19:20:56.903 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:282) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.restartLaunchPhase(Target.java:3218) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$4.run(Target.java:3040) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -Caused by: org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - ... 5 more -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-11 19:20:56.903 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.restartLaunchPhase(Target.java:3218) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$4.run(Target.java:3040) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 2 com.freescale.core.debugger.cdt 4 16777218 2015-10-11 19:20:56.903 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 19:31:06.544 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 19:33:55.603 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.cdt.debug.core 4 5010 2015-10-11 19:33:55.610 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 19:34:06.426 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 19:37:05.945 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 19:38:22.924 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 19:40:43.751 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 19:41:45.905 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 19:47:10.175 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 20:08:02.206 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 21:48:09.564 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.cdt.debug.core 4 5010 2015-10-11 21:48:09.572 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-11 21:48:32.328 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 08:46:42.500 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SESSION 2015-10-12 11:01:35.829 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:01:40.079 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-12 11:01:45.608 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 11:02:00.665 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 11:02:00.671 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 11:02:00.676 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 11:02:00.700 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 11:02:04.368 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 11:02:04.412 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 11:02:04.454 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-12 11:02:06.486 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:02:06.747 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-12 11:02:06.774 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 11:02:06.852 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 11:02:06.940 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 11:02:07.010 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 11:02:25.806 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 11:02:25.819 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 11:02:27.245 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 11:02:27.258 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:02:39.587 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:02:39.602 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:07:20.060 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:07:20.072 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:07:20.083 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:07:20.094 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:07:20.104 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 11:07:20.115 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:07:43.596 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:07:43.597 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:08:12.390 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: Reset has failed - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:08:12.391 -!MESSAGE Reset has failed - -!ENTRY com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:08:33.562 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: Reset has failed - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:08:33.562 -!MESSAGE Reset has failed - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:09:06.658 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:32:47.492 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.cdt.debug.core 4 5010 2015-10-12 11:32:47.500 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:34:46.514 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:35:04.793 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:35:04.794 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:35:33.533 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: Reset has failed - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:35:33.534 -!MESSAGE Reset has failed - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:35:41.848 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:38:36.676 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.cdt.debug.core 4 5010 2015-10-12 11:38:36.684 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:42:27.550 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:42:38.702 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:42:38.703 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:42:49.280 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:50:03.200 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.cdt.debug.core 4 5010 2015-10-12 11:50:03.208 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:50:15.474 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 0 2015-10-12 11:50:40.310 -!MESSAGE A debug session is already in progress. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:50:47.544 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:50:47.544 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:51:09.128 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: Reset has failed - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:51:09.128 -!MESSAGE Reset has failed - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:51:30.177 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:51:30.178 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:51:48.337 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:51:55.251 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:51:55.252 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:52:06.692 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:52:24.197 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:52:24.197 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:52:43.096 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: Reset has failed - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777252 2015-10-12 11:52:43.096 -!MESSAGE Reset has failed - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:52:52.163 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:53:02.705 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:53:02.706 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:53:44.634 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:53:58.073 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:53:58.073 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:54:35.263 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:54:44.111 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:54:44.111 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 11:55:16.345 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:55:30.175 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 11:55:30.175 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 12:00:14.143 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:00:21.885 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:00:21.885 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:00:43.042 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:00:43.042 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 12:01:06.783 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:01:17.476 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:01:17.476 -!MESSAGE Downloading binary to target... -!SESSION 2015-10-12 12:02:25.398 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 12:02:29.893 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 12:02:38.114 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 12:02:38.424 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 12:02:38.430 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 12:02:38.436 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 12:02:38.440 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 12:02:38.446 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 12:02:42.317 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 12:02:42.323 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 12:02:42.329 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 12:02:42.335 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-12 12:02:42.520 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 12:02:45.926 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 12:02:45.965 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 12:02:46.005 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-12 12:02:47.862 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 12:02:48.132 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-12 12:02:48.200 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 12:02:48.281 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 12:02:48.342 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 12:02:48.392 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 12:03:03.399 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 12:03:03.426 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 12:03:05.197 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 12:03:05.211 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:03:39.182 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:03:39.184 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 12:04:04.604 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:04:11.125 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:04:11.126 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:05:40.216 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:05:40.216 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:06:00.708 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:06:00.708 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:07:33.030 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:07:33.030 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:07:49.119 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:07:49.119 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:10:49.169 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:10:49.169 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777252 2015-10-12 12:11:42.935 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: Reset has failed - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777252 2015-10-12 12:11:42.936 -!MESSAGE Reset has failed - -!ENTRY com.freescale.core.debugger.cdt 4 16777252 2015-10-12 12:14:15.083 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: Reset has failed - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777252 2015-10-12 12:14:15.084 -!MESSAGE Reset has failed - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:15:09.027 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:15:09.027 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:15:29.499 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:15:29.500 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:15:51.079 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:15:51.080 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:16:18.921 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:16:18.922 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 12:16:39.745 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:17:02.325 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:17:02.325 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:17:16.608 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 12:17:16.608 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. -!SESSION 2015-10-12 16:49:47.892 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 16:49:51.572 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 16:49:58.783 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 16:49:59.063 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 16:49:59.063 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 16:49:59.073 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 16:49:59.073 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 16:49:59.083 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 16:50:01.944 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 16:50:01.964 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 16:50:01.994 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 16:50:02.004 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 16:50:05.931 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 16:50:05.991 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 16:50:06.031 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-12 16:50:07.691 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 16:50:08.291 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-12 16:50:08.321 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 16:50:08.371 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 16:50:08.431 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 16:50:08.491 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 16:50:11.191 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 16:50:11.201 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 16:50:12.441 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 16:50:12.451 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-12 16:50:18.942 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 16:55:15.343 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 16:55:19.849 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 16:55:19.849 -!MESSAGE Downloading binary to target... -!SESSION 2015-10-12 17:00:31.766 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:00:36.056 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:00:43.917 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:00:44.217 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:00:44.227 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:00:44.227 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:00:44.237 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:00:44.237 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 17:00:47.038 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 17:00:47.048 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 17:00:47.358 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-12 17:00:47.368 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 17:00:50.860 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 17:00:50.900 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 17:00:50.930 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-10-12 17:00:52.082 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:00:52.532 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-10-12 17:00:52.562 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 17:00:52.652 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 17:00:52.722 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-12 17:00:52.772 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 17:00:55.834 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 17:00:55.844 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 17:00:57.240 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-12 17:00:57.250 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-12 17:01:04.386 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:02:10.480 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 17:02:21.543 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 17:02:21.553 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:02:30.026 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:02:36.581 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-12 17:02:36.591 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:05:43.413 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-12 17:05:59.585 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-12 17:05:59.585 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:06:07.829 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:07:16.217 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:08:34.716 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:08:34.726 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) - at org.eclipse.jface.window.Window.open(Window.java:801) - at org.eclipse.cdt.debug.internal.ui.actions.AddGlobalsActionDelegate.doAction(AddGlobalsActionDelegate.java:312) - at org.eclipse.cdt.debug.internal.ui.actions.AddGlobalsActionDelegate$1.run(AddGlobalsActionDelegate.java:123) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.cdt.debug.internal.ui.actions.AddGlobalsActionDelegate.run(AddGlobalsActionDelegate.java:118) - at org.eclipse.ui.actions.ActionDelegate.runWithEvent(ActionDelegate.java:70) - at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:241) - at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584) - at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501) - at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4184) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3769) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-12 17:08:34.726 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY org.eclipse.cdt.debug.core 4 0 2015-10-12 17:08:34.976 -!MESSAGE Error(s) occurred adding globals. -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-12 17:08:34.976 -!MESSAGE Global variable not found - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:08:47.320 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:09:25.076 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:09:25.086 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-12 17:09:25.086 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:09:39.154 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.ui 4 0 2015-10-12 17:11:15.920 -!MESSAGE Unhandled event loop exception -!STACK 0 -org.eclipse.core.runtime.AssertionFailedException: null argument:Action must not be null - at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85) - at org.eclipse.jface.action.ContributionManager.add(ContributionManager.java:75) - at org.eclipse.debug.internal.ui.views.variables.VariablesView.fillContextMenu(VariablesView.java:1093) - at org.eclipse.debug.ui.AbstractDebugView$2.menuAboutToShow(AbstractDebugView.java:537) - at org.eclipse.jface.action.MenuManager.fireAboutToShow(MenuManager.java:343) - at org.eclipse.jface.action.MenuManager.handleAboutToShow(MenuManager.java:475) - at org.eclipse.jface.action.MenuManager.access$1(MenuManager.java:470) - at org.eclipse.jface.action.MenuManager$2.menuShown(MenuManager.java:500) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:255) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058) - at org.eclipse.swt.widgets.Control.WM_INITMENUPOPUP(Control.java:4881) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4557) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) - at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:257) - at org.eclipse.swt.widgets.Display.runPopups(Display.java:4225) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3763) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY org.eclipse.ui 4 0 2015-10-12 17:11:15.920 -!MESSAGE Unhandled event loop exception -!STACK 0 -java.lang.NullPointerException - at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.canExecuteItem(HandledContributionItem.java:840) - at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.handleWidgetSelection(HandledContributionItem.java:723) - at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.access$7(HandledContributionItem.java:708) - at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$4.handleEvent(HandledContributionItem.java:647) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4184) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3769) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY org.eclipse.ui 4 0 2015-10-12 17:11:32.911 -!MESSAGE Unhandled event loop exception -!STACK 0 -org.eclipse.core.runtime.AssertionFailedException: null argument:Action must not be null - at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:85) - at org.eclipse.jface.action.ContributionManager.add(ContributionManager.java:75) - at org.eclipse.debug.internal.ui.views.variables.VariablesView.fillContextMenu(VariablesView.java:1093) - at org.eclipse.debug.ui.AbstractDebugView$2.menuAboutToShow(AbstractDebugView.java:537) - at org.eclipse.jface.action.MenuManager.fireAboutToShow(MenuManager.java:343) - at org.eclipse.jface.action.MenuManager.handleAboutToShow(MenuManager.java:475) - at org.eclipse.jface.action.MenuManager.access$1(MenuManager.java:470) - at org.eclipse.jface.action.MenuManager$2.menuShown(MenuManager.java:500) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:255) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058) - at org.eclipse.swt.widgets.Control.WM_INITMENUPOPUP(Control.java:4881) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4557) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) - at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:257) - at org.eclipse.swt.widgets.Display.runPopups(Display.java:4225) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3763) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:14:58.741 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:14:58.741 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-12 17:14:58.741 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:15:57.544 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:16:39.634 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:16:39.634 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-12 17:16:39.634 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:16:45.873 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: CWVariable was not properly released - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.core.cdi.model.VariableDescriptor.finalize(VariableDescriptor.java:258) - at java.lang.ref.Finalizer.invokeFinalizeMethod(Native Method) - at java.lang.ref.Finalizer.runFinalizer(Unknown Source) - at java.lang.ref.Finalizer.access$100(Unknown Source) - at java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:16:47.982 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:17:37.133 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:17:37.133 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) - at org.eclipse.jface.window.Window.open(Window.java:801) - at org.eclipse.jface.dialogs.MessageDialog.open(MessageDialog.java:334) - at org.eclipse.jface.dialogs.MessageDialog.open(MessageDialog.java:364) - at org.eclipse.jface.dialogs.MessageDialog.openError(MessageDialog.java:431) - at org.eclipse.debug.internal.ui.commands.actions.ExecuteActionRequest$1.run(ExecuteActionRequest.java:44) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-12 17:17:37.133 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:25:57.860 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:27:47.032 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: CWVariable was not properly released - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.core.cdi.model.VariableDescriptor.finalize(VariableDescriptor.java:258) - at java.lang.ref.Finalizer.invokeFinalizeMethod(Native Method) - at java.lang.ref.Finalizer.runFinalizer(Unknown Source) - at java.lang.ref.Finalizer.access$100(Unknown Source) - at java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:27:47.042 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:27:47.052 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-12 17:27:47.052 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:30:00.008 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:41:22.385 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-12 17:41:22.395 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-12 17:41:22.395 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. -!SESSION 2015-10-13 11:53:45.386 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-13 11:53:50.647 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-10-13 11:54:00.268 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-13 11:54:00.279 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-13 11:54:00.286 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-13 11:54:00.292 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-13 11:54:00.298 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-13 11:54:00.303 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-13 11:54:05.025 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-13 11:54:05.060 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-13 11:54:05.068 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-13 11:54:05.076 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-13 11:54:05.217 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-13 11:54:08.818 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-13 11:54:08.876 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-13 11:54:08.924 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-13 11:54:14.527 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-13 11:54:14.576 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-13 11:54:14.616 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-13 11:54:29.429 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-13 11:54:29.434 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-13 11:54:31.474 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-13 11:54:31.479 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist -!SESSION 2015-10-17 13:58:10.610 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 13:58:15.068 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 13:58:23.107 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 13:58:23.397 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 13:58:23.407 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 13:58:23.407 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 13:58:23.417 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 13:58:23.417 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-17 13:58:26.634 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-17 13:58:26.634 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-17 13:58:26.644 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-17 13:58:26.654 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-17 13:58:26.784 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 13:58:29.770 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 13:58:29.810 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 13:58:29.860 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 13:58:36.903 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 13:58:36.943 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 13:58:37.003 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-17 13:58:44.894 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-17 13:58:44.904 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-17 13:58:46.354 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-17 13:58:46.354 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 16:44:21.220 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 16:44:21.226 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@d5ae44, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@d5ae44, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@a42d42, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@a42d42, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@975ded, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@975ded, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@19772e8, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@19772e8, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1f90731, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1f90731, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@47398b, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@47398b, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@12f18a, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@12f18a, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1afc20a, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1afc20a, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-10-17 16:44:21.298 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1ec57ce, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1ec57ce, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) - -!ENTRY com.freescale.core.debugger.cdt 4 32772 2015-10-17 23:11:07.723 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: Bad arguments passed to function - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 32772 2015-10-17 23:11:07.725 -!MESSAGE Bad arguments passed to function - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:11:16.093 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:11:20.847 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:11:20.848 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:11:39.027 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:11:39.027 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:11:45.778 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:11:57.931 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:11:57.931 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:12:04.191 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:12:16.932 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:12:16.932 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777252 2015-10-17 23:12:36.667 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: Reset has failed - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777252 2015-10-17 23:12:36.668 -!MESSAGE Reset has failed - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:12:52.592 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:13:05.738 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:13:05.739 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:13:12.098 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:13:33.176 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:13:33.176 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:14:09.921 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:14:09.922 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:15:03.026 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:15:12.729 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: m_cwVariable was not null when setting new value. - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.core.cdi.model.VariableDescriptor.setCWVariable(VariableDescriptor.java:187) - at com.freescale.cdt.debug.cw.core.cdi.model.GlobalVariableDescriptor.getCheckedCWVariable(GlobalVariableDescriptor.java:43) - at com.freescale.cdt.debug.cw.core.cdi.model.VariableDescriptor.getType(VariableDescriptor.java:346) - at org.eclipse.cdt.debug.internal.core.model.CGlobalVariable$InternalVariable.getType(CGlobalVariable.java:156) - at org.eclipse.cdt.debug.internal.core.model.CVariable.getType(CVariable.java:200) - at org.eclipse.cdt.debug.internal.core.model.CVariable.canCastToArray(CVariable.java:371) - at org.eclipse.cdt.debug.internal.core.model.CVariable.setInitialFormat(CVariable.java:922) - at org.eclipse.cdt.debug.internal.core.model.CVariable.(CVariable.java:167) - at org.eclipse.cdt.debug.internal.core.model.CGlobalVariable.(CGlobalVariable.java:354) - at org.eclipse.cdt.debug.internal.core.model.CVariableFactory.createGlobalVariable(CVariableFactory.java:103) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.createGlobalVariable(CDebugTarget.java:1974) - at org.eclipse.cdt.debug.internal.core.CGlobalVariableManager.addGlobals(CGlobalVariableManager.java:110) - at org.eclipse.cdt.debug.internal.core.CGlobalVariableManager.getGlobals(CGlobalVariableManager.java:89) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.getContentForVariableView(Target.java:4712) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.getAllChildren(Target.java:4646) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.getChildCount(Target.java:4661) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CDebugTargetContentProvider.getChildCount(CDebugTargetContentProvider.java:83) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.retrieveChildCount(ElementContentProvider.java:114) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$2.run(ElementContentProvider.java:63) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:16:55.714 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:16:55.720 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-17 23:16:55.721 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:17:22.478 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:19:10.080 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:19:10.086 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-17 23:19:10.086 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:19:17.036 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:22:35.387 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:24:23.241 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:26:43.246 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:29:59.924 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:31:42.164 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:34:13.254 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:34:28.673 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2015-10-17 23:34:28.674 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:34:39.381 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:45:00.460 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:49:49.888 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SESSION 2015-10-17 23:53:58.037 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 23:54:03.866 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-17 23:54:10.473 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-17 23:54:25.218 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-17 23:54:25.230 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-17 23:54:25.254 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-17 23:54:25.286 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 23:54:30.214 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 23:54:30.286 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 23:54:30.377 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-17 23:54:37.769 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-17 23:54:37.775 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 23:54:37.875 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 23:54:37.917 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-17 23:54:37.951 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-17 23:54:39.428 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-17 23:54:39.433 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 23:57:06.229 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 23:57:06.234 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 23:59:43.672 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 23:59:43.677 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 23:59:43.681 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 23:59:43.686 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 23:59:43.690 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-17 23:59:43.694 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:59:48.309 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-17 23:59:55.390 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: m_cwVariable was not null when setting new value. - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.core.cdi.model.VariableDescriptor.setCWVariable(VariableDescriptor.java:187) - at com.freescale.cdt.debug.cw.core.cdi.model.GlobalVariableDescriptor.getCheckedCWVariable(GlobalVariableDescriptor.java:43) - at com.freescale.cdt.debug.cw.core.cdi.model.VariableDescriptor.getType(VariableDescriptor.java:346) - at org.eclipse.cdt.debug.internal.core.model.CGlobalVariable$InternalVariable.getType(CGlobalVariable.java:156) - at org.eclipse.cdt.debug.internal.core.model.CVariable.getType(CVariable.java:200) - at org.eclipse.cdt.debug.internal.core.model.CVariable.canCastToArray(CVariable.java:371) - at org.eclipse.cdt.debug.internal.core.model.CVariable.setInitialFormat(CVariable.java:922) - at org.eclipse.cdt.debug.internal.core.model.CVariable.(CVariable.java:167) - at org.eclipse.cdt.debug.internal.core.model.CGlobalVariable.(CGlobalVariable.java:354) - at org.eclipse.cdt.debug.internal.core.model.CVariableFactory.createGlobalVariable(CVariableFactory.java:103) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.createGlobalVariable(CDebugTarget.java:1974) - at org.eclipse.cdt.debug.internal.core.CGlobalVariableManager.addGlobals(CGlobalVariableManager.java:110) - at org.eclipse.cdt.debug.internal.core.CGlobalVariableManager.getGlobals(CGlobalVariableManager.java:89) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.getContentForVariableView(Target.java:4712) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.getAllChildren(Target.java:4646) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.getChildCount(Target.java:4661) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CDebugTargetContentProvider.getChildCount(CDebugTargetContentProvider.java:83) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.retrieveChildCount(ElementContentProvider.java:114) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$2.run(ElementContentProvider.java:63) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-18 00:15:12.253 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.debug.core 4 125 2015-10-18 00:16:20.507 -!MESSAGE Error logged from Debug Core: -!STACK 1 -org.eclipse.debug.core.DebugException: - at org.eclipse.cdt.debug.internal.core.CGlobalVariableManager.addGlobals(CGlobalVariableManager.java:123) - at org.eclipse.cdt.debug.internal.core.CGlobalVariableManager.getGlobals(CGlobalVariableManager.java:89) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.getContentForVariableView(Target.java:4712) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.getAllChildren(Target.java:4646) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.getChildCount(Target.java:4661) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CDebugTargetContentProvider.getChildCount(CDebugTargetContentProvider.java:83) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.retrieveChildCount(ElementContentProvider.java:114) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$2.run(ElementContentProvider.java:63) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -Contains: Global variable not found -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 0 2015-10-18 00:16:20.534 -!MESSAGE -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.534 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.535 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.536 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.537 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.538 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.539 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.540 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.541 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.542 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.543 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.544 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.545 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.546 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.547 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.548 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.549 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.550 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.551 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.552 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.553 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.554 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.555 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.556 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.557 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.558 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.559 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.560 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.561 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.562 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.563 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.564 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.565 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.566 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.567 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.568 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.569 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.570 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.571 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.572 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.573 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.574 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.575 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.576 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.577 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.578 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.579 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.580 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.581 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.582 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.583 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.584 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.585 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.586 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.587 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.588 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.595 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.596 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.597 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.598 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.599 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.600 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.601 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.602 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.603 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.604 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.605 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.606 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.607 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.608 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.609 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.610 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.611 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.612 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.613 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.614 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.615 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.616 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.617 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.618 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.619 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.620 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.621 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.622 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.623 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.624 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.625 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.626 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.627 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.629 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.630 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.631 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found -!SUBENTRY 2 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:16:20.632 -!MESSAGE Global variable not found diff --git a/MCU Firmware/.metadata/.lock b/MCU Firmware/.metadata/.lock deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.log b/MCU Firmware/.metadata/.log deleted file mode 100644 index be59075..0000000 --- a/MCU Firmware/.metadata/.log +++ /dev/null @@ -1,8434 +0,0 @@ -!SESSION 2015-10-17 23:53:58.037 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -This is a continuation of log file C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\.metadata\.bak_0.log -Created Time: 2015-10-18 00:16:24.087 - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-18 00:16:24.092 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-18 00:25:26.554 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-10-18 00:25:26.562 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-10-18 00:25:26.563 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. -!SESSION 2015-10-22 07:42:03.662 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-22 07:42:09.403 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-10-22 07:42:20.001 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-22 07:42:20.013 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-22 07:42:20.019 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-22 07:42:20.024 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-22 07:42:20.030 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-22 07:42:20.035 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-22 07:42:24.530 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-22 07:42:24.552 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-22 07:42:24.562 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-22 07:42:24.570 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-22 07:42:24.791 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-22 07:42:28.852 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-22 07:42:28.894 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-22 07:42:28.935 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-22 07:42:34.643 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-22 07:42:34.697 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-22 07:42:34.745 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY org.eclipse.rse.core 4 0 2015-10-22 07:42:43.975 -!MESSAGE unexpected exception -!STACK 0 -java.io.FileNotFoundException: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\.metadata\.plugins\org.eclipse.rse.core\profiles\PRF.asus-ddt_135\5\0\node.properties (Acceso denegado) - at java.io.FileOutputStream.open(Native Method) - at java.io.FileOutputStream.(Unknown Source) - at java.io.FileOutputStream.(Unknown Source) - at org.eclipse.rse.internal.persistence.PFFileSystemLocation.setContents(PFFileSystemLocation.java:104) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.writeProperties(PropertyFileProvider.java:522) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.saveNode(PropertyFileProvider.java:340) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.saveNode(PropertyFileProvider.java:334) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.saveNode(PropertyFileProvider.java:334) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.save(PropertyFileProvider.java:305) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.saveRSEDOM(PropertyFileProvider.java:127) - at org.eclipse.rse.internal.persistence.PFFileSystemJob.run(PFFileSystemJob.java:66) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-22 07:42:53.329 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-22 07:42:53.335 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-22 07:42:55.371 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-22 07:42:55.377 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist -!SESSION 2015-10-26 09:04:55.004 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-10-26 09:04:59.572 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-10-26 09:05:08.471 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-26 09:05:08.481 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-26 09:05:08.486 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-26 09:05:08.491 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-26 09:05:08.496 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-10-26 09:05:08.502 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-26 09:05:12.118 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-26 09:05:12.126 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-26 09:05:12.134 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-10-26 09:05:12.142 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2015-10-26 09:05:12.270 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-26 09:05:15.562 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-26 09:05:15.606 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-26 09:05:15.645 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-26 09:05:20.555 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-26 09:05:20.596 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-10-26 09:05:20.633 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-26 09:05:35.451 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-26 09:05:35.459 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-26 09:05:38.210 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-10-26 09:05:38.224 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist -!SESSION 2015-11-12 13:43:32.480 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-11-12 13:43:37.324 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-11-12 13:43:46.023 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-12 13:43:46.035 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-12 13:43:46.042 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-12 13:43:46.048 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-12 13:43:46.055 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-12 13:43:46.061 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-12 13:43:49.809 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-12 13:43:49.819 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-12 13:43:49.832 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-12 13:43:49.849 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2015-11-12 13:43:50.097 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-12 13:43:53.175 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-12 13:43:53.224 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-12 13:43:53.268 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-12 13:43:58.281 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-12 13:43:58.326 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-12 13:43:58.367 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-12 13:44:11.304 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-12 13:44:11.309 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-12 13:44:12.986 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-12 13:44:12.992 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2015-11-12 14:12:52.905 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-11-12 14:12:52.911 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui -!SESSION 2015-11-17 12:27:23.977 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-11-17 12:27:28.823 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.processorexpert.core 1 0 2015-11-17 12:27:34.897 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-17 12:27:50.757 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-17 12:27:50.762 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-17 12:27:50.771 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-17 12:27:50.780 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-17 12:27:54.462 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-17 12:27:54.504 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-17 12:27:54.545 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-17 12:27:59.863 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-17 12:27:59.912 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-17 12:27:59.951 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-17 12:28:16.418 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-17 12:28:16.425 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-17 12:28:17.994 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-17 12:28:18.000 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2015-11-17 12:37:57.334 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-11-17 12:37:57.340 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-11-17 13:37:22.601 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-17 13:37:22.606 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-17 13:37:22.611 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-17 13:37:22.621 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-17 13:37:22.628 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-17 13:37:22.634 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 13:37:38.603 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 13:40:47.058 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 13:40:47.067 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-11-17 13:40:47.069 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 14:03:32.645 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 14:04:13.618 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@c87b2c, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@c87b2c, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@eac0f, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@eac0f, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@142256f, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@142256f, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1a7a449, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1a7a449, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@112e3a1, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@112e3a1, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@11e8dbd, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@11e8dbd, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@eb8e89, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@eb8e89, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@dafa2f, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@dafa2f, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2015-11-17 14:04:43.973 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@5f44ec, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@5f44ec, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 14:08:21.147 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 14:09:16.896 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 14:09:16.901 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-11-17 14:09:16.902 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 14:22:37.952 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 14:24:21.573 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 14:24:59.663 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2015-11-17 14:24:59.669 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2015-11-17 14:24:59.670 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. -!SESSION 2015-11-22 21:39:32.485 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2015-11-22 21:39:36.905 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2015-11-22 21:39:44.596 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-22 21:39:44.866 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-22 21:39:44.876 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-22 21:39:44.876 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-22 21:39:44.886 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2015-11-22 21:39:44.886 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-22 21:39:48.073 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-22 21:39:48.076 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-22 21:39:48.086 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2015-11-22 21:39:48.086 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2015-11-22 21:39:48.226 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-22 21:39:51.246 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-22 21:39:51.276 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-22 21:39:51.316 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2015-11-22 21:39:52.886 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2015-11-22 21:39:53.116 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2015-11-22 21:39:53.146 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-22 21:39:53.206 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-22 21:39:53.266 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2015-11-22 21:39:53.336 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-22 21:40:05.908 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-22 21:40:05.918 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-22 21:40:07.369 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2015-11-22 21:40:07.389 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2015-11-23 12:16:43.821 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2015-11-23 12:16:43.831 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui -!SESSION 2016-01-12 01:07:18.878 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-12 01:07:23.589 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-12 01:07:29.117 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-12 01:07:44.629 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-12 01:07:44.658 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-12 01:07:44.709 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-12 01:07:44.733 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-12 01:07:48.547 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-12 01:07:48.597 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-12 01:07:48.635 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-12 01:07:53.077 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-12 01:07:53.122 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-12 01:07:53.154 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-12 01:08:07.844 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-12 01:08:07.848 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-12 01:08:09.158 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-12 01:08:09.162 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@ac2fa3, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@ac2fa3, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@6b78ba, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@6b78ba, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1c31e6d, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1c31e6d, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@102bd60, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@102bd60, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@df1640, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@df1640, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@2dffb1, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@2dffb1, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1edefd2, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1edefd2, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1be1b4, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1be1b4, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-12 01:08:58.582 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@7f0b26, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@7f0b26, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) - -!ENTRY org.eclipse.osgi 2 1 2016-01-12 01:09:59.964 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-12 01:09:59.968 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-12 01:10:00.091 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-12 01:10:00.096 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-12 01:10:00.100 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-12 01:10:00.105 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-12 01:10:00.109 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-12 01:10:00.113 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 01:36:51.760 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 02:05:33.587 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 02:06:48.306 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.byteValue(IntegralValue.java:78) - at org.eclipse.cdt.debug.internal.core.model.CValue.getCharValueString(CValue.java:332) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:268) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 02:07:57.049 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 02:19:37.828 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 02:19:37.839 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-12 02:19:37.841 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:05:52.226 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:13:26.303 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:13:26.311 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-12 10:13:26.312 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:26:02.762 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:29:30.656 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:30:28.979 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:32:03.181 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:34:03.223 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:36:08.786 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:45:40.737 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:46:21.843 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:46:52.551 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:49:00.635 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:52:27.778 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:53:11.433 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 10:53:11.442 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-12 10:53:11.443 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:02:23.888 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 0 2016-01-12 11:04:30.669 -!MESSAGE A debug session is already in progress. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:04:31.978 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:04:55.179 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.intValue(IntegralValue.java:60) - at org.eclipse.cdt.debug.internal.core.model.CValue.getShortValueString(CValue.java:437) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:272) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:05:58.439 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:07:10.730 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.byteValue(IntegralValue.java:78) - at org.eclipse.cdt.debug.internal.core.model.CValue.getCharValueString(CValue.java:332) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:268) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:09:33.278 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:10:22.941 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:17:52.282 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:19:28.301 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.947 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.955 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.960 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.965 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.971 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.975 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.981 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.985 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.991 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:44.996 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:45.002 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:45.007 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:45.013 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:45.018 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:45.023 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:45.029 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:45.034 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-12 11:21:45.039 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 11:28:17.187 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 14:33:52.677 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 15:27:10.252 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-12 15:27:10.263 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-12 15:27:10.264 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). -!SESSION 2016-01-14 17:02:52.923 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-14 17:02:58.025 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-14 17:03:04.451 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-14 17:03:22.555 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-14 17:03:22.587 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-14 17:03:22.633 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-14 17:03:22.709 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-14 17:03:27.091 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-14 17:03:27.141 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-14 17:03:27.192 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-14 17:03:32.375 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-14 17:03:32.415 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-14 17:03:32.462 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-14 17:03:49.824 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-14 17:03:49.838 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-14 17:03:51.374 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-14 17:03:51.384 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2016-01-14 17:04:21.769 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-14 17:04:21.769 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-14 17:06:39.883 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-14 17:06:39.889 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-14 17:06:39.894 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-14 17:06:39.899 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-14 17:06:39.905 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-14 17:06:39.910 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-14 17:07:14.431 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-14 17:09:26.011 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-14 17:10:47.750 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-14 17:11:07.173 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-14 17:13:03.027 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-14 17:13:03.033 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-14 17:13:03.035 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-15 18:00:08.025 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-15 18:10:14.426 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.debug.core 4 2 2016-01-15 19:07:05.437 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2016-01-15 19:07:05.454 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 2 2016-01-15 19:07:05.630 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2016-01-15 19:07:05.637 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SESSION 2016-01-16 19:27:22.680 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.core.resources 2 10035 2016-01-16 19:27:25.584 -!MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. - -!ENTRY org.eclipse.core.resources 4 567 2016-01-16 19:27:25.763 -!MESSAGE Could not read metadata for 'C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\.metadata\.plugins\org.eclipse.core.resources\.root\.indexes\properties.index'. Unexpected version: 0. - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:27:27.484 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:27:36.404 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:27:36.417 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:27:36.422 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:27:36.428 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:27:36.433 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:27:36.438 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:27:40.674 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:27:40.694 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:27:40.704 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:27:40.721 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-16 19:27:40.955 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:27:44.339 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:27:44.427 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:27:44.471 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:27:52.278 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:27:52.324 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:27:52.372 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:28:07.942 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:28:07.949 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:28:09.820 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:28:09.827 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:30:50.473 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:30:50.473 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-16 19:34:25.335 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-16 19:35:18.346 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-16 19:35:18.353 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-16 19:35:18.353 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:36:50.799 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:36:50.799 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:38:07.102 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:38:07.102 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. -!SESSION 2016-01-16 19:38:19.923 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:38:22.376 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:38:27.619 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:38:27.629 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:38:27.629 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:38:27.639 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:38:27.639 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:38:27.649 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:38:29.983 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:38:29.995 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:38:30.003 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:38:30.014 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-16 19:38:30.067 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:38:33.722 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:38:33.752 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:38:33.791 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2016-01-16 19:38:35.767 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:38:36.004 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2016-01-16 19:38:36.014 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:38:36.054 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:38:36.104 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:38:36.134 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:38:46.110 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:38:46.130 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:38:46.430 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:38:46.440 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:40:22.923 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:40:22.924 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:40:23.476 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:40:23.486 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui -!SESSION 2016-01-16 19:41:30.368 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:41:35.156 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:41:45.464 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:41:45.858 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:41:45.868 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:41:45.868 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:41:45.878 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:41:45.888 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:41:49.379 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:41:49.379 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:41:49.389 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:41:49.399 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-16 19:41:49.949 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:41:53.511 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:41:53.551 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:41:53.591 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2016-01-16 19:41:55.242 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:41:55.673 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2016-01-16 19:41:55.703 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:41:55.773 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:41:55.853 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:41:55.923 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:42:11.376 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:42:11.396 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:42:12.876 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:42:12.886 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:43:20.361 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:43:20.361 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. -!SESSION 2016-01-16 19:44:23.851 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:44:26.352 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:44:31.945 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:44:31.965 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:44:31.965 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:44:31.975 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:44:31.975 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:44:31.985 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:44:34.826 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:44:34.840 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:44:34.846 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 19:44:34.854 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-16 19:44:34.891 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:44:38.548 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:44:38.581 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:44:38.608 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2016-01-16 19:44:40.616 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 19:44:40.870 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2016-01-16 19:44:40.890 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:44:40.920 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:44:40.960 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 19:44:41.000 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY org.eclipse.osgi 2 0 2016-01-16 19:44:45.692 -!MESSAGE While loading class "com.processorexpert.core.PEinterface.IPEProjectEventsListener", thread "Thread[main,6,main]" timed out waiting (5002ms) for thread "Thread[Worker-0,5,main]" to finish starting bundle "com.freescale.processorexpert.core_1.6.3.RT6_b1446-0504 [962]". To avoid deadlock, thread "Thread[main,6,main]" is proceeding but "com.processorexpert.core.PEinterface.IPEProjectEventsListener" may not be fully initialized. -!STACK 0 -org.osgi.framework.BundleException: State change in progress for bundle "reference:file:plugins/com.freescale.processorexpert.core_1.6.3.RT6_b1446-0504/" by thread "Worker-0". - at org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.java:1088) - at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:298) - at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:440) - at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:263) - at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:469) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216) - at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:395) - at org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass(SingleSourcePackage.java:35) - at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:461) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107) - at java.lang.ClassLoader.loadClass(Unknown Source) - at java.lang.ClassLoader.defineClass1(Native Method) - at java.lang.ClassLoader.defineClass(Unknown Source) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.java:188) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClassHoldingLock(ClasspathManager.java:632) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:614) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java:568) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager.java:492) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:465) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216) - at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:395) - at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:464) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107) - at java.lang.ClassLoader.loadClass(Unknown Source) - at java.lang.ClassLoader.defineClass1(Native Method) - at java.lang.ClassLoader.defineClass(Unknown Source) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.java:188) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClassHoldingLock(ClasspathManager.java:632) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:614) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java:568) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager.java:492) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:465) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216) - at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:395) - at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:464) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107) - at java.lang.ClassLoader.loadClass(Unknown Source) - at org.eclipse.osgi.internal.loader.BundleLoader.loadClass(BundleLoader.java:340) - at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:229) - at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:1212) - at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:174) - at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:905) - at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243) - at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:55) - at org.eclipse.ui.internal.navigator.extensions.NavigatorContentDescriptor.createContentProvider(NavigatorContentDescriptor.java:377) - at org.eclipse.ui.internal.navigator.extensions.NavigatorContentExtension$1.run(NavigatorContentExtension.java:129) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.ui.internal.navigator.extensions.NavigatorContentExtension.internalGetContentProvider(NavigatorContentExtension.java:125) - at org.eclipse.ui.internal.navigator.NavigatorContentService.extractContentProviders(NavigatorContentService.java:1214) - at org.eclipse.ui.internal.navigator.NavigatorContentService.updateService(NavigatorContentService.java:391) - at org.eclipse.ui.internal.navigator.NavigatorContentServiceContentProvider.inputChanged(NavigatorContentServiceContentProvider.java:109) - at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:276) - at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1690) - at org.eclipse.ui.navigator.CommonNavigator.createPartControl(CommonNavigator.java:212) - at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:138) - at org.eclipse.ui.internal.e4.compatibility.CompatibilityView.createPartControl(CompatibilityView.java:155) - at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:318) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) - at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:861) - at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:841) - at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:113) - at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:321) - at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:242) - at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:161) - at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:102) - at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71) - at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:53) - at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:141) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:894) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:629) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$6.run(PartRenderingEngine.java:520) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:505) - at org.eclipse.e4.ui.workbench.renderers.swt.ElementReferenceRenderer.createWidget(ElementReferenceRenderer.java:74) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:894) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:629) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.showTab(StackRenderer.java:1115) - at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:98) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:645) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:641) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:641) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:641) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) - at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:59) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:641) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) - at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer$1.handleEvent(LazyStackRenderer.java:67) - at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:187) - at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) - at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) - at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) - at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) - at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) - at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) - at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) - at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) - at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) - at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:80) - at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:58) - at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) - at org.eclipse.e4.ui.model.application.ui.advanced.impl.PerspectiveStackImpl.setSelectedElement(PerspectiveStackImpl.java:135) - at org.eclipse.e4.ui.model.application.ui.advanced.impl.PerspectiveStackImpl.setSelectedElement(PerspectiveStackImpl.java:1) - at org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher$13.widgetSelected(PerspectiveSwitcher.java:439) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4184) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3769) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -Caused by: org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException - ... 177 more -Root exception: -org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException - at org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.java:1088) - at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:298) - at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:440) - at org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:263) - at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:469) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216) - at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:395) - at org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass(SingleSourcePackage.java:35) - at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:461) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107) - at java.lang.ClassLoader.loadClass(Unknown Source) - at java.lang.ClassLoader.defineClass1(Native Method) - at java.lang.ClassLoader.defineClass(Unknown Source) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.java:188) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClassHoldingLock(ClasspathManager.java:632) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:614) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java:568) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager.java:492) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:465) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216) - at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:395) - at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:464) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107) - at java.lang.ClassLoader.loadClass(Unknown Source) - at java.lang.ClassLoader.defineClass1(Native Method) - at java.lang.ClassLoader.defineClass(Unknown Source) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.java:188) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClassHoldingLock(ClasspathManager.java:632) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:614) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java:568) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager.java:492) - at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:465) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:216) - at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:395) - at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:464) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421) - at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412) - at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107) - at java.lang.ClassLoader.loadClass(Unknown Source) - at org.eclipse.osgi.internal.loader.BundleLoader.loadClass(BundleLoader.java:340) - at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:229) - at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:1212) - at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:174) - at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:905) - at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243) - at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:55) - at org.eclipse.ui.internal.navigator.extensions.NavigatorContentDescriptor.createContentProvider(NavigatorContentDescriptor.java:377) - at org.eclipse.ui.internal.navigator.extensions.NavigatorContentExtension$1.run(NavigatorContentExtension.java:129) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.ui.internal.navigator.extensions.NavigatorContentExtension.internalGetContentProvider(NavigatorContentExtension.java:125) - at org.eclipse.ui.internal.navigator.NavigatorContentService.extractContentProviders(NavigatorContentService.java:1214) - at org.eclipse.ui.internal.navigator.NavigatorContentService.updateService(NavigatorContentService.java:391) - at org.eclipse.ui.internal.navigator.NavigatorContentServiceContentProvider.inputChanged(NavigatorContentServiceContentProvider.java:109) - at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:276) - at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1690) - at org.eclipse.ui.navigator.CommonNavigator.createPartControl(CommonNavigator.java:212) - at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:138) - at org.eclipse.ui.internal.e4.compatibility.CompatibilityView.createPartControl(CompatibilityView.java:155) - at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:318) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) - at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:861) - at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:841) - at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:113) - at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:321) - at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:242) - at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:161) - at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:102) - at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71) - at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:53) - at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:141) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:894) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:629) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$6.run(PartRenderingEngine.java:520) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:505) - at org.eclipse.e4.ui.workbench.renderers.swt.ElementReferenceRenderer.createWidget(ElementReferenceRenderer.java:74) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:894) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:629) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.showTab(StackRenderer.java:1115) - at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:98) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:645) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:641) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:641) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:641) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) - at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveRenderer.processContents(PerspectiveRenderer.java:59) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:641) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:731) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:702) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:696) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:681) - at org.eclipse.e4.ui.workbench.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:103) - at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer$1.handleEvent(LazyStackRenderer.java:67) - at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:187) - at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) - at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) - at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) - at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) - at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) - at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) - at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) - at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) - at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) - at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:80) - at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:58) - at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) - at org.eclipse.e4.ui.model.application.ui.advanced.impl.PerspectiveStackImpl.setSelectedElement(PerspectiveStackImpl.java:135) - at org.eclipse.e4.ui.model.application.ui.advanced.impl.PerspectiveStackImpl.setSelectedElement(PerspectiveStackImpl.java:1) - at org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher$13.widgetSelected(PerspectiveSwitcher.java:439) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4184) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3769) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:44:52.100 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:44:52.107 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:44:52.443 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 19:44:52.453 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:53:12.419 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-16 19:53:12.420 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. -!SESSION 2016-01-16 22:03:46.483 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:03:48.899 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:03:54.112 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:03:54.392 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:03:54.402 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:03:54.402 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:03:54.412 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:03:54.412 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 22:03:56.423 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 22:03:56.471 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 22:03:56.478 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-16 22:03:56.505 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-16 22:03:56.680 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 22:04:00.066 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 22:04:00.096 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 22:04:00.126 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2016-01-16 22:04:02.039 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:04:02.277 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2016-01-16 22:04:02.296 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 22:04:02.337 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 22:04:02.377 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-16 22:04:02.417 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 22:04:11.532 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 22:04:11.592 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 22:04:12.052 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-16 22:04:12.084 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-16 22:04:18.451 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:04:22.411 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-16 22:04:22.421 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-16 22:04:45.180 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-16 22:04:45.187 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-16 22:04:45.187 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). -!SESSION 2016-01-17 07:21:36.471 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 07:21:40.784 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 07:21:48.657 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 07:21:48.945 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 07:21:48.952 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 07:21:48.956 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 07:21:48.961 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 07:21:48.966 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-17 07:21:51.846 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-17 07:21:51.854 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-17 07:21:51.861 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-17 07:21:51.868 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-17 07:21:52.349 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-17 07:21:55.441 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-17 07:21:55.483 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-17 07:21:55.521 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.transport.ecf 2 0 2016-01-17 07:21:57.042 -!MESSAGE Connection to http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/p2.index failed on freescale.com. Retry attempt 0 started -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.performConnect(HttpClientRetrieveFileTransfer.java:1129) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientRetrieveFileTransfer.openStreams(HttpClientRetrieveFileTransfer.java:699) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:879) - at org.eclipse.ecf.provider.filetransfer.retrieve.AbstractRetrieveFileTransfer.sendRetrieveRequest(AbstractRetrieveFileTransfer.java:570) - at org.eclipse.ecf.provider.filetransfer.retrieve.MultiProtocolRetrieveAdapter.sendRetrieveRequest(MultiProtocolRetrieveAdapter.java:106) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.sendRetrieveRequest(FileReader.java:422) - at org.eclipse.equinox.internal.p2.transport.ecf.FileReader.readInto(FileReader.java:355) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:101) - at org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport.download(RepositoryTransport.java:156) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadIndexFile(AbstractRepositoryManager.java:721) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:640) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.getAvailableRepositories(UpdateChecker.java:150) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker.checkForUpdates(UpdateChecker.java:128) - at org.eclipse.equinox.internal.p2.updatechecker.UpdateChecker$UpdateCheckThread.run(UpdateChecker.java:72) - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 07:21:57.292 -!MESSAGE NLS unused message: CacheManager_CannotLoadNonUrlLocation in: org.eclipse.equinox.internal.p2.repository.messages - -!ENTRY org.eclipse.equinox.p2.transport.ecf 4 1006 2016-01-17 07:21:57.312 -!MESSAGE Unknown Host: http://freescale.com/lgfiles/updates/Eclipse/MCU10_6/com.freescale.mcu.updatesite/content.xml -!STACK 0 -java.net.UnknownHostException: freescale.com - at java.net.PlainSocketImpl.connect(Unknown Source) - at java.net.SocksSocketImpl.connect(Unknown Source) - at java.net.Socket.connect(Unknown Source) - at org.eclipse.ecf.provider.filetransfer.events.socket.SocketEventCreateUtil.createSocket(SocketEventCreateUtil.java:43) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:81) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:73) - at org.eclipse.ecf.internal.provider.filetransfer.httpclient.ECFHttpClientProtocolSocketFactory.createSocket(ECFHttpClientProtocolSocketFactory.java:65) - at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707) - at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1361) - at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) - at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397) - at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346) - at org.eclipse.ecf.provider.filetransfer.httpclient.HttpClientFileSystemBrowser.runRequest(HttpClientFileSystemBrowser.java:232) - at org.eclipse.ecf.provider.filetransfer.browse.AbstractFileSystemBrowser$DirectoryJob.run(AbstractFileSystemBrowser.java:69) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-17 07:21:57.375 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-17 07:21:57.447 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-17 07:21:57.538 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-17 07:22:12.828 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-17 07:22:12.848 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-17 07:22:14.328 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-17 07:22:14.338 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:03:31.138 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 13:03:35.188 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-17 13:03:35.188 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:04:06.231 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.hasRegisterLocation(Variable.java:463) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getValue(Variable.java:168) - at org.eclipse.cdt.debug.internal.core.model.CLocalVariable$InternalVariable.getValue(CLocalVariable.java:229) - at org.eclipse.cdt.debug.internal.core.model.CVariable.getValue(CVariable.java:285) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:47) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:04:06.253 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.hasRegisterLocation(Variable.java:463) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getValue(Variable.java:168) - at org.eclipse.cdt.debug.internal.core.model.CLocalVariable$InternalVariable.getValue(CLocalVariable.java:229) - at org.eclipse.cdt.debug.internal.core.model.CVariable.getValue(CVariable.java:285) - at org.eclipse.debug.internal.ui.model.elements.VariableContentProvider.hasChildren(VariableContentProvider.java:62) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.updateHasChildren(ElementContentProvider.java:223) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$3.run(ElementContentProvider.java:200) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:04:06.996 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.hasRegisterLocation(Variable.java:463) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getValue(Variable.java:168) - at org.eclipse.cdt.debug.internal.core.model.CLocalVariable$InternalVariable.getValue(CLocalVariable.java:229) - at org.eclipse.cdt.debug.internal.core.model.CVariable.getValue(CVariable.java:285) - at org.eclipse.debug.internal.ui.model.elements.VariableContentProvider.hasChildren(VariableContentProvider.java:62) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.updateHasChildren(ElementContentProvider.java:223) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$3.run(ElementContentProvider.java:200) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:04:07.016 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.hasRegisterLocation(Variable.java:463) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getValue(Variable.java:168) - at org.eclipse.cdt.debug.internal.core.model.CLocalVariable$InternalVariable.getValue(CLocalVariable.java:229) - at org.eclipse.cdt.debug.internal.core.model.CVariable.getValue(CVariable.java:285) - at org.eclipse.debug.internal.ui.model.elements.VariableContentProvider.hasChildren(VariableContentProvider.java:62) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.updateHasChildren(ElementContentProvider.java:223) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$3.run(ElementContentProvider.java:200) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:04:58.497 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:05:47.755 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:08:21.387 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:10:13.440 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:10:13.450 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4155) - at org.eclipse.swt.widgets.Shell.WM_ENTERIDLE(Shell.java:2233) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4544) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:5004) - at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) - at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:257) - at org.eclipse.swt.widgets.Display.runPopups(Display.java:4225) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3763) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-17 13:10:13.450 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:23:43.749 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:25:39.844 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 0 2016-01-17 13:26:06.537 -!MESSAGE A debug session is already in progress. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:26:07.918 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:26:29.302 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.byteValue(IntegralValue.java:78) - at org.eclipse.cdt.debug.internal.core.model.CValue.getCharValueString(CValue.java:332) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:268) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:26:32.268 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.byteValue(IntegralValue.java:78) - at org.eclipse.cdt.debug.internal.core.model.CValue.getCharValueString(CValue.java:332) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:268) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:26:32.771 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.byteValue(IntegralValue.java:78) - at org.eclipse.cdt.debug.internal.core.model.CValue.getCharValueString(CValue.java:332) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:268) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:42:40.688 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:57:32.016 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:58:57.493 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 13:58:57.498 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-17 13:58:57.499 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 14:19:05.034 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 14:19:23.703 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.intValue(IntegralValue.java:60) - at org.eclipse.cdt.debug.internal.core.model.CValue.getShortValueString(CValue.java:437) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:272) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 14:19:46.430 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-17 14:19:46.436 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-17 14:19:46.437 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). -!SESSION 2016-01-25 09:50:30.039 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.core.resources 2 10035 2016-01-25 09:50:33.079 -!MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. - -!ENTRY org.eclipse.osgi 2 1 2016-01-25 09:50:35.122 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-25 09:50:44.016 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-25 09:50:44.026 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-25 09:50:44.026 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-25 09:50:44.036 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-25 09:50:44.036 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-25 09:50:44.046 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-25 09:50:47.278 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-25 09:50:47.288 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-25 09:50:47.298 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-25 09:50:47.298 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-25 09:50:47.807 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-25 09:50:51.330 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-25 09:50:51.380 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-25 09:50:51.441 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-25 09:50:56.667 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-25 09:50:56.727 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-25 09:50:56.788 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-25 09:51:15.237 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-25 09:51:15.237 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-25 09:51:16.861 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-25 09:51:16.867 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2016-01-25 09:51:44.347 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-25 09:51:44.347 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-25 09:52:38.283 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-25 09:56:26.338 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-25 09:56:50.092 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-25 10:00:59.409 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-25 17:35:39.560 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-25 17:46:51.892 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-25 17:46:51.892 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-25 17:46:51.902 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-25 18:08:40.333 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.core.resources 4 568 2016-01-26 10:53:16.372 -!MESSAGE Could not write metadata for 'C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\.metadata\.plugins\org.eclipse.core.resources\.projects\X-Sub MCU Firmware\.indexes\d0\history.index'. -!STACK 0 -java.io.FileNotFoundException: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\.metadata\.plugins\org.eclipse.core.resources\.projects\X-Sub MCU Firmware\.indexes\d0\history.index (La operación solicitada no se puede realizar en un archivo con una sección asignada a usuario abierta) - at java.io.FileOutputStream.open(Native Method) - at java.io.FileOutputStream.(Unknown Source) - at java.io.FileOutputStream.(Unknown Source) - at org.eclipse.core.internal.localstore.Bucket.save(Bucket.java:346) - at org.eclipse.core.internal.localstore.Bucket.load(Bucket.java:290) - at org.eclipse.core.internal.localstore.Bucket.load(Bucket.java:274) - at org.eclipse.core.internal.localstore.BucketTree.loadBucketFor(BucketTree.java:115) - at org.eclipse.core.internal.localstore.HistoryStore2.addState(HistoryStore2.java:93) - at org.eclipse.core.internal.localstore.FileSystemResourceManager.write(FileSystemResourceManager.java:1101) - at org.eclipse.core.internal.resources.File.internalSetContents(File.java:323) - at org.eclipse.core.internal.resources.File.setContents(File.java:362) - at org.eclipse.core.internal.resources.File.setContents(File.java:466) - at org.eclipse.cdt.internal.core.model.Util.save(Util.java:156) - at com.freescale.core.ide.cdt.toolchain.CoreIDEMakefileGenerator.populateFragmentMakefile(CoreIDEMakefileGenerator.java:1670) - at com.freescale.core.ide.cdt.toolchain.CoreIDEMakefileGenerator.generateMakefiles(CoreIDEMakefileGenerator.java:1238) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.performMakefileGeneration(CommonBuilder.java:1815) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.performPrebuildGeneration(CommonBuilder.java:1672) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.build(CommonBuilder.java:1122) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.build(CommonBuilder.java:732) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.build(CommonBuilder.java:643) - at org.eclipse.core.internal.events.BuildManager$3.run(BuildManager.java:812) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:220) - at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:289) - at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:378) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:381) - at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:306) - at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:480) - at org.eclipse.core.internal.resources.Project$1.run(Project.java:649) - at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2391) - at org.eclipse.core.internal.resources.Project.internalBuild(Project.java:628) - at org.eclipse.core.internal.resources.Project.build(Project.java:132) - at org.eclipse.cdt.launch.AbstractCLaunchDelegate.buildForLaunch(AbstractCLaunchDelegate.java:619) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:830) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.142 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.147 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.158 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.170 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.182 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.190 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.202 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.210 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.218 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.224 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.231 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.240 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.248 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.260 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.267 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.276 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.282 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY org.eclipse.help 4 0 2016-01-26 10:58:13.289 -!MESSAGE Required attribute "label" missing from "topic" element in "/com.freescale.doc.mcu.s08.s12z.btutility.manual/toc.xml" (skipping element) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 11:17:58.129 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.jface 2 0 2016-01-26 11:18:39.595 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 11:18:39.596 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1ad2bf, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1ad2bf, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 11:18:39.596 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@10206fc, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@10206fc, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 11:18:39.596 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@18b704, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@18b704, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 11:18:39.596 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@978b90, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@978b90, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 11:18:39.596 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@14b9b3d, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@14b9b3d, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 11:18:39.596 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@bcf1a5, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@bcf1a5, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 11:18:39.596 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@9c8f32, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@9c8f32, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 11:18:39.596 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@7d2737, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@7d2737, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 11:18:39.596 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@998c21, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@998c21, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 11:20:01.066 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 11:20:25.820 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 11:22:04.116 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 11:32:00.127 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 11:32:00.162 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-26 11:32:00.163 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY org.eclipse.core.resources 4 568 2016-01-26 13:55:53.067 -!MESSAGE Could not write metadata for 'C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\.metadata\.plugins\org.eclipse.core.resources\.projects\X-Sub MCU Firmware\.indexes\d0\history.index'. -!STACK 0 -java.io.FileNotFoundException: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\.metadata\.plugins\org.eclipse.core.resources\.projects\X-Sub MCU Firmware\.indexes\d0\history.index (La operación solicitada no se puede realizar en un archivo con una sección asignada a usuario abierta) - at java.io.FileOutputStream.open(Native Method) - at java.io.FileOutputStream.(Unknown Source) - at java.io.FileOutputStream.(Unknown Source) - at org.eclipse.core.internal.localstore.Bucket.save(Bucket.java:346) - at org.eclipse.core.internal.localstore.Bucket.load(Bucket.java:290) - at org.eclipse.core.internal.localstore.Bucket.load(Bucket.java:274) - at org.eclipse.core.internal.localstore.BucketTree.loadBucketFor(BucketTree.java:115) - at org.eclipse.core.internal.localstore.HistoryStore2.addState(HistoryStore2.java:93) - at org.eclipse.core.internal.localstore.FileSystemResourceManager.write(FileSystemResourceManager.java:1101) - at org.eclipse.core.internal.resources.File.internalSetContents(File.java:323) - at org.eclipse.core.internal.resources.File.setContents(File.java:362) - at org.eclipse.core.internal.resources.File.setContents(File.java:466) - at org.eclipse.cdt.internal.core.model.Util.save(Util.java:156) - at com.freescale.core.ide.cdt.toolchain.CoreIDEMakefileGenerator.populateFragmentMakefile(CoreIDEMakefileGenerator.java:1670) - at com.freescale.core.ide.cdt.toolchain.CoreIDEMakefileGenerator.generateMakefiles(CoreIDEMakefileGenerator.java:1238) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.performMakefileGeneration(CommonBuilder.java:1815) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.performPrebuildGeneration(CommonBuilder.java:1672) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.build(CommonBuilder.java:1122) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.build(CommonBuilder.java:732) - at org.eclipse.cdt.managedbuilder.internal.core.CommonBuilder.build(CommonBuilder.java:643) - at org.eclipse.core.internal.events.BuildManager$3.run(BuildManager.java:812) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:220) - at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:289) - at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:378) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:381) - at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:437) - at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:460) - at org.eclipse.core.internal.resources.Workspace.buildInternal(Workspace.java:540) - at org.eclipse.core.internal.resources.Workspace.build(Workspace.java:459) - at org.eclipse.ui.actions.BuildAction$1.runInWorkspace(BuildAction.java:444) - at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:38) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 14:15:49.398 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 14:18:12.832 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 14:20:17.844 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 14:20:17.844 -!MESSAGE Downloading binary to target... -!SESSION 2016-01-26 14:20:30.415 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.e4.ui.workbench 4 0 2016-01-26 14:20:37.412 -!MESSAGE Unable to load resource file:/C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU%20Firmware/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi -!STACK 0 -org.eclipse.emf.ecore.resource.impl.ResourceSetImpl$1DiagnosticWrappedException: org.eclipse.emf.ecore.xmi.IllegalValueException: Value 'org.eclipse.e4.ui.model.application.ui.basic.impl.PartStackImpl@1a0d346 (elementId: stickyFolderRight, tags: null, contributorURI: null) (widget: null, renderer: null, toBeRendered: false, onTop: false, visible: true, containerData: 2500, accessibilityPhrase: null)' is not legal. (file:/C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU%20Firmware/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi, -1, -1) - at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.handleDemandLoadException(ResourceSetImpl.java:319) - at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.demandLoadHelper(ResourceSetImpl.java:278) - at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.getResource(ResourceSetImpl.java:406) - at org.eclipse.e4.ui.internal.workbench.ResourceHandler.loadResource(ResourceHandler.java:234) - at org.eclipse.e4.ui.internal.workbench.ResourceHandler.loadMostRecentModel(ResourceHandler.java:202) - at org.eclipse.e4.ui.internal.workbench.swt.E4Application.loadApplicationModel(E4Application.java:370) - at org.eclipse.e4.ui.internal.workbench.swt.E4Application.createE4Workbench(E4Application.java:220) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:557) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -Caused by: org.eclipse.emf.ecore.xmi.IllegalValueException: Value 'org.eclipse.e4.ui.model.application.ui.basic.impl.PartStackImpl@1a0d346 (elementId: stickyFolderRight, tags: null, contributorURI: null) (widget: null, renderer: null, toBeRendered: false, onTop: false, visible: true, containerData: 2500, accessibilityPhrase: null)' is not legal. (file:/C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU%20Firmware/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi, -1, -1) - at org.eclipse.emf.ecore.xmi.impl.XMLHandler.setFeatureValue(XMLHandler.java:2658) - at org.eclipse.emf.ecore.xmi.impl.XMLHandler.handleForwardReferences(XMLHandler.java:1144) - at org.eclipse.emf.ecore.xmi.impl.XMLHandler.endDocument(XMLHandler.java:1223) - at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endDocument(Unknown Source) - at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) - at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source) - at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source) - at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source) - at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source) - at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source) - at javax.xml.parsers.SAXParser.parse(Unknown Source) - at org.eclipse.emf.ecore.xmi.impl.XMLLoadImpl.load(XMLLoadImpl.java:175) - at org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl.doLoad(XMLResourceImpl.java:240) - at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(ResourceImpl.java:1505) - at org.eclipse.emf.ecore.resource.impl.ResourceImpl.load(ResourceImpl.java:1284) - at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.demandLoad(ResourceSetImpl.java:259) - at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.demandLoadHelper(ResourceSetImpl.java:274) - ... 22 more -Caused by: java.lang.IllegalArgumentException: The selected element org.eclipse.e4.ui.model.application.ui.basic.impl.PartStackImpl@1a0d346 (elementId: stickyFolderRight, tags: null, contributorURI: null) (widget: null, renderer: null, toBeRendered: false, onTop: false, visible: true, containerData: 2500, accessibilityPhrase: null) must be visible in the UI presentation - at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:164) - at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.eSet(ElementContainerImpl.java:234) - at org.eclipse.e4.ui.model.application.ui.basic.impl.WindowImpl.eSet(WindowImpl.java:781) - at org.eclipse.e4.ui.model.application.ui.basic.impl.TrimmedWindowImpl.eSet(TrimmedWindowImpl.java:121) - at org.eclipse.emf.ecore.impl.BasicEObjectImpl.eSet(BasicEObjectImpl.java:1071) - at org.eclipse.emf.ecore.xmi.impl.XMLHelperImpl.setValue(XMLHelperImpl.java:1204) - at org.eclipse.emf.ecore.xmi.impl.XMLHandler.setFeatureValue(XMLHandler.java:2653) - ... 38 more - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:20:37.528 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 14:20:49.834 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 14:20:49.914 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 14:20:49.975 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 14:20:50.016 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:20:54.346 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:20:54.537 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:20:54.651 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-26 14:20:57.231 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:21:01.639 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:21:01.713 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:21:01.772 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 14:21:37.307 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 14:21:37.315 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 14:21:39.821 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 14:21:39.829 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:22:50.828 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:22:50.835 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@29e623, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@29e623, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@18b8e3b, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@18b8e3b, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@126f585, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@126f585, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@c0f78f, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@c0f78f, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@bcd7ee, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@bcd7ee, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@44ebd, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@44ebd, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@cd6dca, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@cd6dca, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@e31c79, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@e31c79, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 14:22:51.251 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@6282c1, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@6282c1, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:23:09.140 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:23:09.148 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:23:09.160 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:23:09.171 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:23:09.183 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:23:09.195 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 14:26:26.848 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 14:26:26.849 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY org.eclipse.debug.core 4 2 2016-01-26 14:26:26.988 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -java.lang.NullPointerException - at com.freescale.core.ide.projectsview.views.ProjectsView.cancelLoading(ProjectsView.java:1536) - at com.freescale.core.ide.projectsview.views.ProjectsView$4.launchConfigurationChanged(ProjectsView.java:1486) - at org.eclipse.debug.internal.core.LaunchManager$ConfigurationNotifier.run(LaunchManager.java:289) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.internal.core.LaunchManager$ConfigurationNotifier.notify(LaunchManager.java:270) - at org.eclipse.debug.internal.core.LaunchManager.launchConfigurationChanged(LaunchManager.java:2352) - at org.eclipse.debug.internal.core.LaunchManager$LaunchManagerVisitor.visit(LaunchManager.java:449) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:69) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:49) - at org.eclipse.debug.internal.core.LaunchManager.resourceChanged(LaunchManager.java:2637) - at org.eclipse.core.internal.events.NotificationManager$1.run(NotificationManager.java:291) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.core.internal.events.NotificationManager.notify(NotificationManager.java:285) - at org.eclipse.core.internal.events.NotificationManager.broadcastChanges(NotificationManager.java:149) - at org.eclipse.core.internal.resources.Workspace.broadcastPostChange(Workspace.java:401) - at org.eclipse.core.internal.resources.Workspace.endOperation(Workspace.java:1577) - at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2400) - at org.eclipse.debug.internal.core.LaunchConfigurationWorkingCopy.doSave(LaunchConfigurationWorkingCopy.java:213) - at org.eclipse.debug.internal.core.LaunchConfigurationWorkingCopy.doSave(LaunchConfigurationWorkingCopy.java:170) - at org.eclipse.cdt.debug.internal.core.CSettingsManager.save(CSettingsManager.java:260) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.saveFormats(CDebugTarget.java:1622) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.cleanup(CDebugTarget.java:1120) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminated(CDebugTarget.java:1086) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.handleExitedEvent(CDebugTarget.java:1326) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.handleDebugEvents(CDebugTarget.java:967) - at com.freescale.cdt.debug.cw.core.cdi.EventManager$EventDispatchJob.run(EventManager.java:80) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 120 2016-01-26 14:26:27.017 -!MESSAGE An exception occurred during launch configuration change notification. -!STACK 0 -java.lang.NullPointerException - at com.freescale.core.ide.projectsview.views.ProjectsView.cancelLoading(ProjectsView.java:1536) - at com.freescale.core.ide.projectsview.views.ProjectsView$4.launchConfigurationChanged(ProjectsView.java:1486) - at org.eclipse.debug.internal.core.LaunchManager$ConfigurationNotifier.run(LaunchManager.java:289) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.internal.core.LaunchManager$ConfigurationNotifier.notify(LaunchManager.java:270) - at org.eclipse.debug.internal.core.LaunchManager.launchConfigurationChanged(LaunchManager.java:2352) - at org.eclipse.debug.internal.core.LaunchManager$LaunchManagerVisitor.visit(LaunchManager.java:449) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:69) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:80) - at org.eclipse.core.internal.events.ResourceDelta.accept(ResourceDelta.java:49) - at org.eclipse.debug.internal.core.LaunchManager.resourceChanged(LaunchManager.java:2637) - at org.eclipse.core.internal.events.NotificationManager$1.run(NotificationManager.java:291) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.core.internal.events.NotificationManager.notify(NotificationManager.java:285) - at org.eclipse.core.internal.events.NotificationManager.broadcastChanges(NotificationManager.java:149) - at org.eclipse.core.internal.resources.Workspace.broadcastPostChange(Workspace.java:401) - at org.eclipse.core.internal.resources.Workspace.endOperation(Workspace.java:1577) - at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2400) - at org.eclipse.debug.internal.core.LaunchConfigurationWorkingCopy.doSave(LaunchConfigurationWorkingCopy.java:213) - at org.eclipse.debug.internal.core.LaunchConfigurationWorkingCopy.doSave(LaunchConfigurationWorkingCopy.java:170) - at org.eclipse.cdt.debug.internal.core.CSettingsManager.save(CSettingsManager.java:260) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.saveFormats(CDebugTarget.java:1622) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.cleanup(CDebugTarget.java:1120) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminated(CDebugTarget.java:1086) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.handleExitedEvent(CDebugTarget.java:1326) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.handleDebugEvents(CDebugTarget.java:967) - at com.freescale.cdt.debug.cw.core.cdi.EventManager$EventDispatchJob.run(EventManager.java:80) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.jface 4 0 2016-01-26 14:26:27.707 -!MESSAGE Unhandled event loop exception during blocked modal context. -!STACK 0 -org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:158) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) - at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:173) - at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) - at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) - at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:518) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:351) - at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2689) - at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1119) - at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1002) - at org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1183) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1181) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1154) - at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1169) - at org.eclipse.ui.internal.WorkbenchWindow.access$14(WorkbenchWindow.java:1140) - at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1204) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1202) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1214) - at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:449) - at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:580) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) - at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:309) - at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1694) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4530) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) - at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3767) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -Caused by: java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.ui.internal.UILockListener.doPendingWork(UILockListener.java:164) - at org.eclipse.ui.internal.UISynchronizer$3.run(UISynchronizer.java:158) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - ... 76 more - -!ENTRY com.freescale.core.ide.commanderView 4 0 2016-01-26 14:26:27.877 -!MESSAGE Internal Error -!STACK 0 -org.eclipse.swt.SWTException: Widget is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Widget.error(Widget.java:468) - at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) - at org.eclipse.swt.widgets.Control.setToolTipText(Control.java:3674) - at org.eclipse.ui.forms.widgets.Hyperlink.setToolTipText(Hyperlink.java:168) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.updateCmdLinksUI(CommanderView.java:322) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.access$1(CommanderView.java:255) - at com.freescale.core.ide.internal.commanderview.view.CommanderView$4.runInUIThread(CommanderView.java:238) - at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:96) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) - at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:173) - at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) - at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) - at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:518) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:351) - at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2689) - at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1119) - at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1002) - at org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1183) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1181) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1154) - at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1169) - at org.eclipse.ui.internal.WorkbenchWindow.access$14(WorkbenchWindow.java:1140) - at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1204) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1202) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1214) - at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:449) - at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:580) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) - at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:309) - at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1694) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4530) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) - at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3767) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY com.freescale.core.ide.commanderView 4 0 2016-01-26 14:26:27.923 -!MESSAGE Internal Error -!STACK 0 -org.eclipse.swt.SWTException: Widget is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Widget.error(Widget.java:468) - at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) - at org.eclipse.swt.widgets.Control.setToolTipText(Control.java:3674) - at org.eclipse.ui.forms.widgets.Hyperlink.setToolTipText(Hyperlink.java:168) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.updateCmdLinksUI(CommanderView.java:322) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.access$1(CommanderView.java:255) - at com.freescale.core.ide.internal.commanderview.view.CommanderView$4.runInUIThread(CommanderView.java:238) - at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:96) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) - at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:173) - at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) - at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) - at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:518) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:351) - at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2689) - at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1119) - at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1002) - at org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1183) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1181) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1154) - at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1169) - at org.eclipse.ui.internal.WorkbenchWindow.access$14(WorkbenchWindow.java:1140) - at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1204) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1202) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1214) - at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:449) - at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:580) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) - at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:309) - at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1694) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4530) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) - at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3767) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SESSION 2016-01-26 14:58:57.614 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:59:01.986 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:59:09.821 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:59:10.101 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:59:10.108 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:59:10.113 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:59:10.118 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 14:59:10.123 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 14:59:12.850 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 14:59:12.865 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 14:59:12.872 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 14:59:12.880 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-26 14:59:13.310 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:59:16.515 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:59:16.546 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:59:16.586 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:59:21.189 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:59:21.229 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 14:59:21.266 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 14:59:34.495 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 14:59:34.505 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 14:59:36.019 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 14:59:36.025 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1ce33df, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1ce33df, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@afa388, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@afa388, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1196f84, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1196f84, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@e85102, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@e85102, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1e6c35, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1e6c35, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1522d7c, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1522d7c, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@2856ba, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@2856ba, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@5606dc, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@5606dc, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 15:01:10.904 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1dc8b07, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1dc8b07, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 15:04:05.019 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 15:04:05.020 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 15:22:41.581 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 15:22:41.581 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 15:24:48.504 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 15:24:48.504 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 16:28:03.932 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 16:28:03.932 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 16:29:40.959 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 16:29:40.959 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 16:30:16.307 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 16:30:16.312 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 16:32:53.705 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 16:32:53.705 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 17:07:50.268 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: timeout: Target did not have m_cwProcess in time. - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.corbaDisconnecting(Target.java:3292) - at com.freescale.cdt.debug.cw.core.cdi.Session.corbaDisconnecting(Session.java:1706) - at com.freescale.cdt.debug.cw.core.cdi.Session.access$3(Session.java:1700) - at com.freescale.cdt.debug.cw.core.cdi.Session$3.disconnecting(Session.java:1659) - at com.freescale.cdt.debug.cw.CWCorbaMgr$CorbaContext$1SaveCallClient.run(CWCorbaMgr.java:347) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at com.freescale.cdt.debug.cw.CWCorbaMgr$CorbaContext.callClients(CWCorbaMgr.java:362) - at com.freescale.cdt.debug.cw.CWCorbaMgr$CorbaContext.setState(CWCorbaMgr.java:388) - at com.freescale.cdt.debug.cw.CWCorbaMgr$CorbaContext$2.run(CWCorbaMgr.java:510) - at com.freescale.cdt.debug.cw.core.CWWaitTimeout$1.run(CWWaitTimeout.java:66) - -!ENTRY org.eclipse.debug.core 4 2 2016-01-26 17:07:52.184 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2016-01-26 17:07:52.815 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 2 2016-01-26 17:07:52.860 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2016-01-26 17:07:52.866 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 17:07:53.270 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Exhausted shutdown timeout while asking the DE to shut itself down. Proceeding with Eclipse shutdown. - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWCorbaMgr$CorbaContext.terminate(CWCorbaMgr.java:528) - at com.freescale.cdt.debug.cw.CWCorbaMgr$CorbaContext.access$15(CWCorbaMgr.java:466) - at com.freescale.cdt.debug.cw.CWCorbaMgr.stop(CWCorbaMgr.java:1109) - at com.freescale.cdt.debug.cw.core.CWPlugin.stop(CWPlugin.java:455) - at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:771) - at java.security.AccessController.doPrivileged(Native Method) - at org.eclipse.osgi.framework.internal.core.BundleContextImpl.stop(BundleContextImpl.java:764) - at org.eclipse.osgi.framework.internal.core.BundleHost.stopWorker(BundleHost.java:510) - at org.eclipse.osgi.framework.internal.core.AbstractBundle.suspend(AbstractBundle.java:566) - at org.eclipse.osgi.framework.internal.core.Framework.suspendBundle(Framework.java:1206) - at org.eclipse.osgi.framework.internal.core.StartLevelManager.decFWSL(StartLevelManager.java:592) - at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:257) - at org.eclipse.osgi.framework.internal.core.StartLevelManager.shutdown(StartLevelManager.java:215) - at org.eclipse.osgi.framework.internal.core.InternalSystemBundle.suspend(InternalSystemBundle.java:284) - at org.eclipse.osgi.framework.internal.core.Framework.shutdown(Framework.java:692) - at org.eclipse.osgi.framework.internal.core.Framework.close(Framework.java:600) - at org.eclipse.core.runtime.adaptor.EclipseStarter.shutdown(EclipseStarter.java:399) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:199) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 17:07:53.987 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Exhausted shutdown timeout while waiting for DE process to go away. Will forcibly kill. - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWCorbaMgr$CorbaContext.terminate(CWCorbaMgr.java:617) - at com.freescale.cdt.debug.cw.CWCorbaMgr$CorbaContext.access$15(CWCorbaMgr.java:466) - at com.freescale.cdt.debug.cw.CWCorbaMgr.stop(CWCorbaMgr.java:1109) - at com.freescale.cdt.debug.cw.core.CWPlugin.stop(CWPlugin.java:455) - at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:771) - at java.security.AccessController.doPrivileged(Native Method) - at org.eclipse.osgi.framework.internal.core.BundleContextImpl.stop(BundleContextImpl.java:764) - at org.eclipse.osgi.framework.internal.core.BundleHost.stopWorker(BundleHost.java:510) - at org.eclipse.osgi.framework.internal.core.AbstractBundle.suspend(AbstractBundle.java:566) - at org.eclipse.osgi.framework.internal.core.Framework.suspendBundle(Framework.java:1206) - at org.eclipse.osgi.framework.internal.core.StartLevelManager.decFWSL(StartLevelManager.java:592) - at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:257) - at org.eclipse.osgi.framework.internal.core.StartLevelManager.shutdown(StartLevelManager.java:215) - at org.eclipse.osgi.framework.internal.core.InternalSystemBundle.suspend(InternalSystemBundle.java:284) - at org.eclipse.osgi.framework.internal.core.Framework.shutdown(Framework.java:692) - at org.eclipse.osgi.framework.internal.core.Framework.close(Framework.java:600) - at org.eclipse.core.runtime.adaptor.EclipseStarter.shutdown(EclipseStarter.java:399) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:199) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SESSION 2016-01-26 17:26:47.779 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.core.resources 2 10035 2016-01-26 17:26:50.499 -!MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes. - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 17:26:52.254 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 17:27:01.032 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 17:27:01.331 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 17:27:01.339 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 17:27:01.345 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 17:27:01.351 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 17:27:01.357 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 17:27:04.414 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 17:27:04.423 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 17:27:04.430 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 17:27:04.438 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-26 17:27:04.853 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:27:09.372 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:27:09.427 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:27:09.475 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:27:14.835 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:27:14.881 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:27:14.924 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 17:27:30.152 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 17:27:30.160 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 17:27:32.079 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 17:27:32.093 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.equinox.p2.core 4 0 2016-01-26 17:54:17.635 -!MESSAGE Provisioning exception -!STACK 1 -org.eclipse.equinox.p2.core.ProvisionException: No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.fail(AbstractRepositoryManager.java:393) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:675) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.doLoad(LoadMetadataRepositoryJob.java:117) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.runModal(LoadMetadataRepositoryJob.java:102) - at org.eclipse.equinox.internal.p2.ui.sdk.PreloadingRepositoryHandler$2.runModal(PreloadingRepositoryHandler.java:83) - at org.eclipse.equinox.p2.operations.ProvisioningJob.run(ProvisioningJob.java:177) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:54:17.636 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.core 4 0 2016-01-26 17:54:17.678 -!MESSAGE Provisioning exception -!STACK 1 -org.eclipse.equinox.p2.core.ProvisionException: No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.fail(AbstractRepositoryManager.java:393) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:675) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.doLoad(LoadMetadataRepositoryJob.java:117) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.runModal(LoadMetadataRepositoryJob.java:102) - at org.eclipse.equinox.internal.p2.ui.sdk.PreloadingRepositoryHandler$2.runModal(PreloadingRepositoryHandler.java:83) - at org.eclipse.equinox.p2.operations.ProvisioningJob.run(ProvisioningJob.java:177) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:54:17.679 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.core 4 0 2016-01-26 17:54:17.715 -!MESSAGE Provisioning exception -!STACK 1 -org.eclipse.equinox.p2.core.ProvisionException: No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.fail(AbstractRepositoryManager.java:393) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:675) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.doLoad(LoadMetadataRepositoryJob.java:117) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.runModal(LoadMetadataRepositoryJob.java:102) - at org.eclipse.equinox.internal.p2.ui.sdk.PreloadingRepositoryHandler$2.runModal(PreloadingRepositoryHandler.java:83) - at org.eclipse.equinox.p2.operations.ProvisioningJob.run(ProvisioningJob.java:177) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:54:17.716 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.core 4 0 2016-01-26 17:54:19.540 -!MESSAGE Provisioning exception -!STACK 1 -org.eclipse.equinox.p2.core.ProvisionException: No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.fail(AbstractRepositoryManager.java:393) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:675) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.doLoad(LoadMetadataRepositoryJob.java:117) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.runModal(LoadMetadataRepositoryJob.java:102) - at org.eclipse.equinox.internal.p2.ui.sdk.PreloadingRepositoryHandler$2.runModal(PreloadingRepositoryHandler.java:83) - at org.eclipse.equinox.p2.operations.ProvisioningJob.run(ProvisioningJob.java:177) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:54:19.540 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.core 4 0 2016-01-26 17:54:19.574 -!MESSAGE Provisioning exception -!STACK 1 -org.eclipse.equinox.p2.core.ProvisionException: No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.fail(AbstractRepositoryManager.java:393) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:675) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.doLoad(LoadMetadataRepositoryJob.java:117) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.runModal(LoadMetadataRepositoryJob.java:102) - at org.eclipse.equinox.internal.p2.ui.sdk.PreloadingRepositoryHandler$2.runModal(PreloadingRepositoryHandler.java:83) - at org.eclipse.equinox.p2.operations.ProvisioningJob.run(ProvisioningJob.java:177) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:54:19.574 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.core 4 0 2016-01-26 17:54:19.609 -!MESSAGE Provisioning exception -!STACK 1 -org.eclipse.equinox.p2.core.ProvisionException: No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.fail(AbstractRepositoryManager.java:393) - at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:675) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:96) - at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.loadRepository(MetadataRepositoryManager.java:92) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.doLoad(LoadMetadataRepositoryJob.java:117) - at org.eclipse.equinox.p2.ui.LoadMetadataRepositoryJob.runModal(LoadMetadataRepositoryJob.java:102) - at org.eclipse.equinox.internal.p2.ui.sdk.PreloadingRepositoryHandler$2.runModal(PreloadingRepositoryHandler.java:83) - at org.eclipse.equinox.p2.operations.ProvisioningJob.run(ProvisioningJob.java:177) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 17:54:19.609 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 17:57:48.869 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 17:57:48.877 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui -!SESSION 2016-01-26 18:46:27.138 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 18:46:31.080 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 18:46:41.652 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 18:46:41.665 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 18:46:41.699 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-26 18:46:42.081 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-26 18:46:42.259 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 18:46:45.395 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 18:46:45.445 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 18:46:45.495 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 18:46:50.409 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 18:46:50.449 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-26 18:46:50.489 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY org.eclipse.rse.core 4 0 2016-01-26 18:47:01.635 -!MESSAGE unexpected exception -!STACK 0 -java.io.FileNotFoundException: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\.metadata\.plugins\org.eclipse.rse.core\profiles\PRF.asus-ddt_135\0\node.properties (Acceso denegado) - at java.io.FileOutputStream.open(Native Method) - at java.io.FileOutputStream.(Unknown Source) - at java.io.FileOutputStream.(Unknown Source) - at org.eclipse.rse.internal.persistence.PFFileSystemLocation.setContents(PFFileSystemLocation.java:104) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.writeProperties(PropertyFileProvider.java:522) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.saveNode(PropertyFileProvider.java:340) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.saveNode(PropertyFileProvider.java:334) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.save(PropertyFileProvider.java:305) - at org.eclipse.rse.internal.persistence.PropertyFileProvider.saveRSEDOM(PropertyFileProvider.java:127) - at org.eclipse.rse.internal.persistence.PFFileSystemJob.run(PFFileSystemJob.java:66) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 18:47:06.518 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 18:47:06.518 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 18:47:08.308 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-26 18:47:08.308 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 18:47:30.407 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 18:47:30.407 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 18:47:30.648 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 18:47:30.654 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 18:47:30.657 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 18:47:30.667 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 18:47:30.667 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-26 18:47:30.677 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@f856ce, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@f856ce, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@b295a, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@b295a, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@c7dae9, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@c7dae9, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@f53805, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@f53805, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1310b39, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1310b39, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@d7ec9e, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@d7ec9e, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1efb813, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1efb813, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@11e23e2, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@11e23e2, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-26 18:47:31.057 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1c5f1fb, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1c5f1fb, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 18:47:39.796 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 18:48:01.070 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 18:48:01.080 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-26 18:48:01.080 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-26 18:52:41.596 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 18:52:45.100 -!MESSAGE Failed to resume target process. -!STACK 1 -org.eclipse.core.runtime.CoreException: Downloading binary to target... - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.launchComplete(Target.java:4610) - at com.freescale.cdt.debug.cw.CWCallback.NotifyTargetLaunchComplete(CWCallback.java:631) - at cwdbg.DebuggerCallbackPOA._invoke(DebuggerCallbackPOA.java:399) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 18:52:45.101 -!MESSAGE Downloading binary to target... - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-26 18:54:36.499 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-26 18:54:36.499 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. -!SESSION 2016-01-28 08:59:29.328 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 08:59:36.330 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 08:59:45.829 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 08:59:46.139 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 08:59:46.139 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 08:59:46.149 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 08:59:46.159 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 08:59:46.159 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-28 08:59:48.954 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-28 08:59:48.954 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-28 08:59:48.964 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-28 08:59:48.964 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-28 08:59:49.444 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 08:59:53.053 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 08:59:53.103 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 08:59:53.143 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 08:59:57.714 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 08:59:57.764 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 08:59:57.814 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-28 09:00:12.219 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-28 09:00:12.219 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-28 09:00:13.850 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-28 09:00:13.860 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 09:00:30.491 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 09:00:30.491 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-28 10:48:35.846 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-28 10:48:35.847 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-28 10:50:23.855 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-28 10:50:23.855 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-28 10:50:31.143 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-28 10:50:31.143 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY com.freescale.core.debugger.cdt 4 16777218 2016-01-28 12:45:06.102 -!MESSAGE Error launching X-Sub MCU Firmware_FLASH_PnE U-MultiLink -!STACK 1 -org.eclipse.core.runtime.CoreException: ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugCoreError(DebugErrorUtils.java:281) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.cwDoLaunch(DownloadLaunchDelegate.java:542) - at com.freescale.cdt.launch.cw.BaseLaunchDelegate.doLaunch(BaseLaunchDelegate.java:203) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launchDebug(DownloadLaunchDelegate.java:276) - at com.freescale.cdt.launch.cw.DownloadLaunchDelegate.launch(DownloadLaunchDelegate.java:123) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:862) - at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:704) - at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1047) - at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1251) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) -!SUBENTRY 1 com.freescale.core.debugger.cdt 4 16777218 2016-01-28 12:45:06.103 -!MESSAGE ColdFire GDI Protocol Adapter : Can't connect. The Debugger can not connect to the P&E BDC interface or targetted hardware board. - -!ENTRY org.eclipse.jface 4 0 2016-01-28 12:45:06.691 -!MESSAGE Unhandled event loop exception during blocked modal context. -!STACK 0 -org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:158) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) - at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:173) - at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) - at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) - at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:518) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:351) - at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2689) - at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1119) - at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1002) - at org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1183) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1181) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1154) - at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1169) - at org.eclipse.ui.internal.WorkbenchWindow.access$14(WorkbenchWindow.java:1140) - at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1204) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1202) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1214) - at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:449) - at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:580) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) - at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:309) - at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1694) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4530) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) - at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3767) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -Caused by: java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.ui.internal.UILockListener.doPendingWork(UILockListener.java:164) - at org.eclipse.ui.internal.UISynchronizer$3.run(UISynchronizer.java:158) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - ... 76 more - -!ENTRY com.freescale.core.ide.commanderView 4 0 2016-01-28 12:45:06.748 -!MESSAGE Internal Error -!STACK 0 -org.eclipse.swt.SWTException: Widget is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Widget.error(Widget.java:468) - at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) - at org.eclipse.swt.widgets.Control.setToolTipText(Control.java:3674) - at org.eclipse.ui.forms.widgets.Hyperlink.setToolTipText(Hyperlink.java:168) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.updateCmdLinksUI(CommanderView.java:322) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.access$1(CommanderView.java:255) - at com.freescale.core.ide.internal.commanderview.view.CommanderView$4.runInUIThread(CommanderView.java:238) - at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:96) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) - at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:173) - at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) - at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) - at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:518) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:351) - at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2689) - at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1119) - at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1002) - at org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1183) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1181) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1154) - at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1169) - at org.eclipse.ui.internal.WorkbenchWindow.access$14(WorkbenchWindow.java:1140) - at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1204) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1202) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1214) - at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:449) - at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:580) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) - at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:309) - at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1694) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4530) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) - at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3767) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY com.freescale.core.ide.commanderView 4 0 2016-01-28 12:45:06.748 -!MESSAGE Internal Error -!STACK 0 -org.eclipse.swt.SWTException: Widget is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Widget.error(Widget.java:468) - at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) - at org.eclipse.swt.widgets.Control.setToolTipText(Control.java:3674) - at org.eclipse.ui.forms.widgets.Hyperlink.setToolTipText(Hyperlink.java:168) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.updateCmdLinksUI(CommanderView.java:322) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.access$1(CommanderView.java:255) - at com.freescale.core.ide.internal.commanderview.view.CommanderView$4.runInUIThread(CommanderView.java:238) - at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:96) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) - at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:173) - at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) - at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) - at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:518) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:351) - at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2689) - at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1119) - at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1002) - at org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1183) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1181) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1154) - at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1169) - at org.eclipse.ui.internal.WorkbenchWindow.access$14(WorkbenchWindow.java:1140) - at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1204) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1202) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1214) - at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:449) - at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:580) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) - at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:309) - at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1694) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4530) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) - at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3767) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY com.freescale.core.ide.commanderView 4 0 2016-01-28 12:45:06.758 -!MESSAGE Internal Error -!STACK 0 -org.eclipse.swt.SWTException: Widget is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Widget.error(Widget.java:468) - at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) - at org.eclipse.swt.widgets.Control.setToolTipText(Control.java:3674) - at org.eclipse.ui.forms.widgets.Hyperlink.setToolTipText(Hyperlink.java:168) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.updateCmdLinksUI(CommanderView.java:322) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.access$1(CommanderView.java:255) - at com.freescale.core.ide.internal.commanderview.view.CommanderView$4.runInUIThread(CommanderView.java:238) - at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:96) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) - at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:173) - at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) - at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) - at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:518) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:351) - at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2689) - at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1119) - at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1002) - at org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1183) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1181) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1154) - at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1169) - at org.eclipse.ui.internal.WorkbenchWindow.access$14(WorkbenchWindow.java:1140) - at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1204) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1202) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1214) - at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:449) - at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:580) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) - at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:309) - at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1694) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4530) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) - at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3767) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY com.freescale.core.ide.commanderView 4 0 2016-01-28 12:45:06.768 -!MESSAGE Internal Error -!STACK 0 -org.eclipse.swt.SWTException: Widget is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Widget.error(Widget.java:468) - at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) - at org.eclipse.swt.widgets.Control.setToolTipText(Control.java:3674) - at org.eclipse.ui.forms.widgets.Hyperlink.setToolTipText(Hyperlink.java:168) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.updateCmdLinksUI(CommanderView.java:322) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.access$1(CommanderView.java:255) - at com.freescale.core.ide.internal.commanderview.view.CommanderView$4.runInUIThread(CommanderView.java:238) - at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:96) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) - at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:173) - at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) - at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) - at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:518) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:351) - at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2689) - at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1119) - at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1002) - at org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1183) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1181) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1154) - at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1169) - at org.eclipse.ui.internal.WorkbenchWindow.access$14(WorkbenchWindow.java:1140) - at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1204) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1202) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1214) - at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:449) - at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:580) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) - at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:309) - at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1694) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4530) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) - at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3767) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) - -!ENTRY com.freescale.core.ide.commanderView 4 0 2016-01-28 12:45:06.778 -!MESSAGE Internal Error -!STACK 0 -org.eclipse.swt.SWTException: Widget is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Widget.error(Widget.java:468) - at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) - at org.eclipse.swt.widgets.Control.setToolTipText(Control.java:3674) - at org.eclipse.ui.forms.widgets.Hyperlink.setToolTipText(Hyperlink.java:168) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.updateCmdLinksUI(CommanderView.java:322) - at com.freescale.core.ide.internal.commanderview.view.CommanderView.access$1(CommanderView.java:255) - at com.freescale.core.ide.internal.commanderview.view.CommanderView$4.runInUIThread(CommanderView.java:238) - at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:96) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) - at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:173) - at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) - at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:507) - at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:518) - at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:351) - at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2689) - at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1119) - at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1002) - at org.eclipse.ui.internal.Workbench$17.run(Workbench.java:1183) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1181) - at org.eclipse.ui.internal.Workbench.close(Workbench.java:1154) - at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1169) - at org.eclipse.ui.internal.WorkbenchWindow.access$14(WorkbenchWindow.java:1140) - at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1204) - at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1202) - at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1214) - at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:449) - at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$11.shellClosed(WBWRenderer.java:580) - at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) - at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) - at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) - at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:309) - at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1694) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4530) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) - at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2541) - at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:498) - at org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) - at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) - at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627) - at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069) - at org.eclipse.swt.widgets.Display.windowProc(Display.java:4991) - at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) - at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3767) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SESSION 2016-01-28 17:04:54.850 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 17:05:00.102 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 17:05:09.663 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 17:05:10.015 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 17:05:10.022 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 17:05:10.028 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 17:05:10.034 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-28 17:05:10.041 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-28 17:05:13.720 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-28 17:05:13.765 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-28 17:05:14.169 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-28 17:05:14.218 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-28 17:05:14.350 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 17:05:18.137 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 17:05:18.186 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 17:05:18.231 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 17:05:23.103 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 17:05:23.151 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-28 17:05:23.197 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-28 17:05:38.945 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-28 17:05:38.951 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-28 17:05:40.597 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-28 17:05:40.603 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-29 10:53:25.115 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.osgi 2 1 2016-01-29 10:53:29.493 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-29 10:53:29.499 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-29 10:56:12.383 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-29 10:56:12.393 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-29 10:56:12.395 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). -!SESSION 2016-01-31 11:38:31.460 ----------------------------------------------- -eclipse.buildId=I20070613-1755 -java.version=1.6.0_15 -java.vendor=Sun Microsystems Inc. -BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en -Command-line arguments: -os win32 -ws win32 -arch x86 - -!ENTRY org.eclipse.osgi 2 1 2016-01-31 11:38:35.983 -!MESSAGE NLS missing message: ContentTypes_errorDialogAlreadyExists in: org.eclipse.ui.internal.messages - -!ENTRY org.eclipse.osgi 2 1 2016-01-31 11:38:44.200 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsets in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-31 11:38:44.489 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showFunctionOffsetsTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-31 11:38:44.489 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytes in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-31 11:38:44.500 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showCodeBytesTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-31 11:38:44.500 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddress in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY org.eclipse.osgi 2 1 2016-01-31 11:38:44.510 -!MESSAGE NLS missing message: DisassemblyPreferencePage_showAddressTooltip in: org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyMessages - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-31 11:38:47.462 -!MESSAGE Environment Variable Dependency not resolved for 'ARMGNUDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-31 11:38:47.482 -!MESSAGE Environment Variable Dependency not resolved for 'ARMSummonDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-31 11:38:47.502 -!MESSAGE Environment Variable Dependency not resolved for 'ARMYagartoDirEnv'. - -!ENTRY com.freescale.core.ide.cdt.toolchain 4 0 2016-01-31 11:38:47.842 -!MESSAGE Environment Variable Dependency not resolved for 'ARMdevkitProDirEnv'. - -!ENTRY com.freescale.processorexpert.core 1 0 2016-01-31 11:38:47.962 -!MESSAGE Plugin com.freescale.processorexpert.core.service ProcessorExpertServiceProvider - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-31 11:38:51.535 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.e200.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-31 11:38:51.585 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.coldfire.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-31 11:38:51.636 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.hcs08_rs08.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-31 11:38:57.327 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.dsc.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-31 11:38:57.367 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.kinetis.updatesite.zip!/. - -!ENTRY org.eclipse.equinox.p2.metadata.repository 4 1000 2016-01-31 11:38:57.407 -!MESSAGE No repository found at jar:file:C:%5CUsers%5Cddtdanilo%5CDownloads%5CCW%20for%20MCU%2010.6%5Ccom.freescale.mcu10_6.s12z.updatesite.zip!/. - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-31 11:39:11.429 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-31 11:39:11.433 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.0/patches' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-31 11:39:13.073 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/ppc' does not exist - -!ENTRY com.freescale.core.ide.wizard.ui 2 0 2016-01-31 11:39:13.073 -!MESSAGE External elements location 'C:\Freescale\CW MCU v10.6\eclipse\../MCU/lib/wizard_data/mqx/4.1/patches' does not exist - -!ENTRY org.eclipse.osgi 2 1 2016-01-31 11:40:46.149 -!MESSAGE NLS unused message: trace_trigger_dv_error_title in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY org.eclipse.osgi 2 1 2016-01-31 11:40:46.159 -!MESSAGE NLS unused message: trace_trigger_dv_error_message in: com.freescale.sa.mcu.analysispoints.nls.ui - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:42:10.895 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:42:55.541 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:45:31.202 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:50:16.522 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:50:56.108 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:55:38.018 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:56:43.426 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:57:20.103 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.byteValue(IntegralValue.java:78) - at org.eclipse.cdt.debug.internal.core.model.CValue.getCharValueString(CValue.java:332) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:268) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:57:29.283 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.byteValue(IntegralValue.java:78) - at org.eclipse.cdt.debug.internal.core.model.CValue.getCharValueString(CValue.java:332) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:268) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 11:59:04.563 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:00:13.198 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:01:27.718 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:07:07.726 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:07:26.864 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.shortValue(IntegralValue.java:69) - at org.eclipse.cdt.debug.internal.core.model.CValue.getCharValueString(CValue.java:355) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:268) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:13:40.220 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:15:11.193 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:15:11.199 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-31 12:15:11.201 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:21:09.488 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation. -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE A conflict occurred for ALT+CTRL+I: -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@fa6dff, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+I, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.include.browser,Open Include Browser, - Open an include browser on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@fa6dff, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE A conflict occurred for ALT+SHIFT+R: -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@14ba6cd, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+SHIFT+R, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.text.rename.element,Rename - Refactoring , - Rename the selected element, - Category(org.eclipse.cdt.ui.category.refactoring,Refactor - C++,C/C++ Refactorings,true), - org.eclipse.ui.internal.MakeHandlersGo@14ba6cd, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE A conflict occurred for F4: -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1b41e05, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F4, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.type.hierarchy,Open Type Hierarchy, - Open a type hierarchy on the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1b41e05, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE A conflict occurred for CTRL+SHIFT+T: -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1efaef, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+T, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.opentype,Open Element, - Open an element in an Editor, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1efaef, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE A conflict occurred for F3: -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1ec86ed, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(F3, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.opendecl,Open Declaration, - Open an editor on the selected element's declaration(s), - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1ec86ed, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE A conflict occurred for CTRL+G: -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@18e4e4a, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.finddecl,Declaration, - Search for declarations of the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@18e4e4a, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE A conflict occurred for CTRL+SHIFT+G: -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1b5e12c, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+G, - ParameterizedCommand(Command(org.eclipse.cdt.ui.search.findrefs,References, - Search for references to the selected element in the workspace, - Category(org.eclipse.cdt.ui.category.source,C/C++ Source,C/C++ Source Actions,true), - org.eclipse.ui.internal.MakeHandlersGo@1b5e12c, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE A conflict occurred for ALT+CTRL+H: -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1d23fc4, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(ALT+CTRL+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.edit.open.call.hierarchy,Open Call Hierarchy, - Open the call hierarchy for the selected element, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@1d23fc4, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) -!SUBENTRY 1 org.eclipse.jface 2 0 2016-01-31 12:40:07.868 -!MESSAGE A conflict occurred for CTRL+SHIFT+H: -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@5885cc, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cEditorScope,,,system) -Binding(CTRL+SHIFT+H, - ParameterizedCommand(Command(org.eclipse.cdt.ui.navigate.open.type.in.hierarchy,Open Type in Hierarchy, - Open a type in the type hierarchy view, - Category(org.eclipse.ui.category.navigate,Navigate,null,true), - org.eclipse.ui.internal.MakeHandlersGo@5885cc, - ,,true),null), - org.eclipse.ui.defaultAcceleratorConfiguration, - org.eclipse.cdt.ui.cViewScope,,,system) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:40:14.382 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:53:57.314 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode).] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:53:57.314 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-31 12:53:57.314 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. 'Not ready' response from chip - try a RESET (force bkgnd mode). - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 12:56:59.748 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 13:25:20.389 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 13:31:16.799 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.[ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.doTerminate(Target.java:1409) - at com.freescale.cdt.debug.cw.core.cdi.model.Target.access$2(Target.java:1344) - at com.freescale.cdt.debug.cw.core.cdi.model.Target$TerminateJob.run(Target.java:1302) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 13:31:16.813 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 1 -org.eclipse.debug.core.DebugException: Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.throwDebugException(CDebugElement.java:295) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.requestFailed(CDebugElement.java:262) - at org.eclipse.cdt.debug.internal.core.model.CDebugElement.targetRequestFailed(CDebugElement.java:250) - at org.eclipse.cdt.debug.internal.core.model.CDebugTarget.terminate(CDebugTarget.java:589) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.terminateConnection(TargetConnectionLostHandler.java:278) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.performAction(TargetConnectionLostHandler.java:141) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler.access$0(TargetConnectionLostHandler.java:106) - at com.freescale.cdt.debug.cw.core.TargetConnectionLostHandler$1.run(TargetConnectionLostHandler.java:73) - at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) - at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:155) - at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4159) - at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3772) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1053) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:942) - at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) - at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) - at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) - at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) - at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) - at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) - at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) - at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) - at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) - at java.lang.reflect.Method.invoke(Unknown Source) - at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:630) - at org.eclipse.equinox.launcher.Main.basicRun(Main.java:585) - at org.eclipse.equinox.launcher.Main.run(Main.java:1439) -!SUBENTRY 1 org.eclipse.cdt.debug.core 4 5010 2016-01-31 13:31:16.814 -!MESSAGE Target request failed: ColdFire GDI Protocol Adapter : An invalid preference was passed to the ColdFire GDI protocol. Loss of communications with P&E hardware. - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 20:35:15.796 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 20:35:35.299 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.IntegralValue.bigIntegerValue(IntegralValue.java:37) - at org.eclipse.cdt.debug.internal.core.model.CValue.getCharValueString(CValue.java:367) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:268) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 20:36:04.816 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.hasRegisterLocation(Variable.java:463) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getValue(Variable.java:168) - at org.eclipse.cdt.debug.internal.core.model.CLocalVariable$InternalVariable.getValue(CLocalVariable.java:229) - at org.eclipse.cdt.debug.internal.core.model.CVariable.getValue(CVariable.java:285) - at org.eclipse.debug.internal.ui.model.elements.VariableContentProvider.hasChildren(VariableContentProvider.java:62) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.updateHasChildren(ElementContentProvider.java:223) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$3.run(ElementContentProvider.java:200) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 20:36:04.831 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.hasRegisterLocation(Variable.java:463) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getValue(Variable.java:168) - at org.eclipse.cdt.debug.internal.core.model.CLocalVariable$InternalVariable.getValue(CLocalVariable.java:229) - at org.eclipse.cdt.debug.internal.core.model.CVariable.getValue(CVariable.java:285) - at org.eclipse.debug.internal.ui.model.elements.VariableContentProvider.hasChildren(VariableContentProvider.java:62) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider.updateHasChildren(ElementContentProvider.java:223) - at org.eclipse.debug.internal.ui.model.elements.ElementContentProvider$3.run(ElementContentProvider.java:200) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 20:36:08.702 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -org.eclipse.cdt.debug.core.cdi.CDIException: Could not complete your request because the process is not suspended.[Could not complete your request because the process is not suspended.] - at com.freescale.cdt.debug.cw.core.DebugErrorUtils.handleDebugError(DebugErrorUtils.java:95) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getLocation(Variable.java:365) - at com.freescale.cdt.debug.cw.core.cdi.model.Variable.getDisplayText(Variable.java:83) - at com.freescale.cdt.debug.cw.core.cdi.model.Value.getValueString(Value.java:67) - at com.freescale.cdt.debug.cw.core.cdi.model.type.PointerValue.pointerValue(PointerValue.java:24) - at org.eclipse.cdt.debug.internal.core.model.CValue.getPointerValueString(CValue.java:658) - at org.eclipse.cdt.debug.internal.core.model.CValue.processUnderlyingValue(CValue.java:286) - at org.eclipse.cdt.debug.internal.core.model.CValue.getValueString(CValue.java:128) - at org.eclipse.cdt.debug.internal.ui.CDebugUIUtils.getValueText(CDebugUIUtils.java:178) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getValueText(CVariableLabelProvider.java:55) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getColumnText(CVariableLabelProvider.java:83) - at org.eclipse.cdt.debug.internal.ui.elements.adapters.CVariableLabelProvider.getLabel(CVariableLabelProvider.java:48) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.getLabel(ElementLabelProvider.java:312) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider.retrieveLabel(ElementLabelProvider.java:215) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelUpdater.run(ElementLabelProvider.java:160) - at org.eclipse.debug.internal.ui.model.elements.ElementLabelProvider$LabelJob.run(ElementLabelProvider.java:74) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 20:40:01.201 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 20:40:57.711 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY com.freescale.core.debugger.cdt 4 120 2016-01-31 20:41:42.609 -!MESSAGE Error logged from CodeWarrior debugger core: -!STACK 0 -java.lang.AssertionError: Assertion failed: Wrong usage of progress monitor in DE! - at com.freescale.cdt.debug.cw.CWExceptionLogger.logAssert(CWExceptionLogger.java:100) - at com.freescale.cdt.debug.cw.CWProgressMonitor.newChild(CWProgressMonitor.java:186) - at cwdbg.ProgressMonitorPOA._invoke(ProgressMonitorPOA.java:190) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleInput(Unknown Source) - at com.sun.corba.se.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(Unknown Source) - at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.handleRequest(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.dispatch(Unknown Source) - at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.doWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.performWork(Unknown Source) - at com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(Unknown Source) - -!ENTRY org.eclipse.debug.core 4 2 2016-01-31 20:49:14.578 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2016-01-31 20:49:14.586 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -org.eclipse.swt.SWTException: Device is disposed - at org.eclipse.swt.SWT.error(SWT.java:4361) - at org.eclipse.swt.SWT.error(SWT.java:4276) - at org.eclipse.swt.SWT.error(SWT.java:4247) - at org.eclipse.swt.widgets.Display.error(Display.java:1265) - at org.eclipse.swt.widgets.Display.getThread(Display.java:2606) - at org.eclipse.debug.internal.ui.stringsubstitution.SelectedResourceManager.getActiveWindow(SelectedResourceManager.java:236) - at org.eclipse.debug.ui.DebugUITools.getDebugContext(DebugUITools.java:225) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.update(RemoveAllGlobalsActionDelegate.java:99) - at org.eclipse.cdt.debug.internal.ui.actions.RemoveAllGlobalsActionDelegate.handleDebugEvents(RemoveAllGlobalsActionDelegate.java:131) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 2 2016-01-31 20:49:14.619 -!MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.debug.core". -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) - -!ENTRY org.eclipse.debug.core 4 125 2016-01-31 20:49:14.624 -!MESSAGE An exception occurred while dispatching debug events. -!STACK 0 -java.lang.NullPointerException - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.getMemorySite(CMemoryRenderingStore.java:82) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore$2.run(CMemoryRenderingStore.java:220) - at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:200) - at org.eclipse.swt.widgets.Display.syncExec(Display.java:4702) - at org.eclipse.cdt.debug.internal.ui.views.memory.CMemoryRenderingStore.handleDebugEvents(CMemoryRenderingStore.java:218) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1109) - at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) - at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1143) - at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:407) - at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53) diff --git a/MCU Firmware/.metadata/.plugins/com.freescale.core.debugger.ui.cdt/dialog_settings.xml b/MCU Firmware/.metadata/.plugins/com.freescale.core.debugger.ui.cdt/dialog_settings.xml deleted file mode 100644 index 4639f59..0000000 --- a/MCU Firmware/.metadata/.plugins/com.freescale.core.debugger.ui.cdt/dialog_settings.xml +++ /dev/null @@ -1,14 +0,0 @@ - -
-
- - -
- - - - - -
-
-
diff --git a/MCU Firmware/.metadata/.plugins/com.freescale.targettaskframework/TargetTaskFrameworkDataModel.xml b/MCU Firmware/.metadata/.plugins/com.freescale.targettaskframework/TargetTaskFrameworkDataModel.xml deleted file mode 100644 index 3d0881c..0000000 --- a/MCU Firmware/.metadata/.plugins/com.freescale.targettaskframework/TargetTaskFrameworkDataModel.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/com.freescale.targettaskframework/TargetTaskFrameworkHistory.xml b/MCU Firmware/.metadata/.plugins/com.freescale.targettaskframework/TargetTaskFrameworkHistory.xml deleted file mode 100644 index 1bbce73..0000000 --- a/MCU Firmware/.metadata/.plugins/com.freescale.targettaskframework/TargetTaskFrameworkHistory.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/.log b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/.log deleted file mode 100644 index 1ec2cb5..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/.log +++ /dev/null @@ -1,32 +0,0 @@ -*** SESSION Aug 26, 2015 09:50:56.87 ------------------------------------------- -*** SESSION Aug 28, 2015 17:18:55.25 ------------------------------------------- -*** SESSION Sep 09, 2015 10:30:26.41 ------------------------------------------- -*** SESSION Sep 16, 2015 09:06:51.42 ------------------------------------------- -*** SESSION Oct 09, 2015 09:58:56.42 ------------------------------------------- -*** SESSION Oct 09, 2015 10:44:21.65 ------------------------------------------- -*** SESSION Oct 10, 2015 10:25:53.31 ------------------------------------------- -*** SESSION Oct 12, 2015 11:01:43.90 ------------------------------------------- -*** SESSION Oct 12, 2015 12:02:34.73 ------------------------------------------- -*** SESSION Oct 12, 2015 16:49:55.84 ------------------------------------------- -*** SESSION Oct 12, 2015 17:00:40.79 ------------------------------------------- -*** SESSION Oct 13, 2015 11:53:56.48 ------------------------------------------- -*** SESSION Oct 17, 2015 13:58:19.91 ------------------------------------------- -*** SESSION Oct 17, 2015 23:54:08.48 ------------------------------------------- -*** SESSION Nov 12, 2015 13:43:42.42 ------------------------------------------- -*** SESSION Nov 17, 2015 12:27:33.16 ------------------------------------------- -*** SESSION Nov 22, 2015 21:39:41.50 ------------------------------------------- -*** SESSION Jan 12, 2016 01:07:27.52 ------------------------------------------- -*** SESSION Jan 14, 2016 17:03:02.71 ------------------------------------------- -*** SESSION Jan 16, 2016 19:27:32.65 ------------------------------------------- -*** SESSION Jan 16, 2016 19:38:25.36 ------------------------------------------- -*** SESSION Jan 16, 2016 19:41:41.29 ------------------------------------------- -*** SESSION Jan 16, 2016 19:44:29.53 ------------------------------------------- -*** SESSION Jan 16, 2016 22:03:51.90 ------------------------------------------- -*** SESSION Jan 25, 2016 09:50:40.48 ------------------------------------------- -*** SESSION Jan 26, 2016 14:20:43.48 ------------------------------------------- -*** SESSION Jan 26, 2016 14:59:06.71 ------------------------------------------- -*** SESSION Jan 26, 2016 17:26:57.37 ------------------------------------------- -*** SESSION Jan 26, 2016 18:46:34.91 ------------------------------------------- -*** SESSION Jan 28, 2016 08:59:42.56 ------------------------------------------- -*** SESSION Jan 28, 2016 17:05:05.93 ------------------------------------------- -*** SESSION Jan 31, 2016 11:38:40.97 ------------------------------------------- diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/IMU I2C Code Test.1440598985264.pdom b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/IMU I2C Code Test.1440598985264.pdom deleted file mode 100644 index 175d70a..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/IMU I2C Code Test.1440598985264.pdom and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/X-Sub MCU Firmware.1440598985312.pdom b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/X-Sub MCU Firmware.1440598985312.pdom deleted file mode 100644 index 66e225c..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/X-Sub MCU Firmware.1440598985312.pdom and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/test1.1440598985373.pdom b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/test1.1440598985373.pdom deleted file mode 100644 index 0048def..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/test1.1440598985373.pdom and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/test2.1440598985353.pdom b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/test2.1440598985353.pdom deleted file mode 100644 index bd4cc56..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.core/test2.1440598985353.pdom and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.debug.ui/dialog_settings.xml b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.debug.ui/dialog_settings.xml deleted file mode 100644 index 763c8e9..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.debug.ui/dialog_settings.xml +++ /dev/null @@ -1,15 +0,0 @@ - -
-
- - - -
- - - - - -
-
-
diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/IMU I2C Code Test.sc b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/IMU I2C Code Test.sc deleted file mode 100644 index 45660bd..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/IMU I2C Code Test.sc +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/X-Sub MCU Firmware.sc b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/X-Sub MCU Firmware.sc deleted file mode 100644 index d4fc75f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/X-Sub MCU Firmware.sc +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/specs.c b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/specs.c deleted file mode 100644 index 8b13789..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/specs.c +++ /dev/null @@ -1 +0,0 @@ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/specs.cpp b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/specs.cpp deleted file mode 100644 index 8b13789..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/specs.cpp +++ /dev/null @@ -1 +0,0 @@ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/test1.sc b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/test1.sc deleted file mode 100644 index 6613b5f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/test1.sc +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/test2.sc b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/test2.sc deleted file mode 100644 index 86c3e2a..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.make.core/test2.sc +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.ui/dialog_settings.xml b/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.ui/dialog_settings.xml deleted file mode 100644 index 774669d..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.cdt.ui/dialog_settings.xml +++ /dev/null @@ -1,12 +0,0 @@ - -
- - -
- -
-
-
-
-
-
diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/0040b28136c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/0040b28136c8001513b8f2fec7d3ea00 deleted file mode 100644 index 7a10f5b..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/0040b28136c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Init.c" \ - -C_SRCS += \ -../Init.c \ - -OBJS += \ -./Init_c.obj \ - -OBJS_QUOTED += \ -"./Init_c.obj" \ - -C_DEPS += \ -./Init_c.d \ - -OBJS_OS_FORMAT += \ -./Init_c.obj \ - -C_DEPS_QUOTED += \ -"./Init_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Init_c.obj: ../Init.c - @echo 'Building file: $<' - @echo 'Executing target #6 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Init.args" -o "./Init_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Init_c.d: ../Init.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/108157f05cc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/108157f05cc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/108157f05cc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/204e22ae5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/204e22ae5bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/204e22ae5bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/40180d1238c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/40180d1238c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/40180d1238c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/401827a580c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/401827a580c8001513b8f2fec7d3ea00 deleted file mode 100644 index 02de40f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/401827a580c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,119 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -#Progress monitor hint: 30 -first : all --include ../makefile.init - -# This file contains definitions of environment variables used in the makefiles and .args files if exist. --include makefile.local - -RM := "$(GNU_Make_Install_DirEnv)/rm" -f - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Sources/subdir.mk --include Project_Settings/Startup_Code/subdir.mk --include Generated_Code/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXECUTABLES += \ -X-SubMCUFirmware.elf \ - -EXECUTABLES_QUOTED += \ -"X-SubMCUFirmware.elf" \ - -EXECUTABLES_OS_FORMAT += \ -X-SubMCUFirmware.elf \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS += \ -X-SubMCUFirmware.elf.s19 \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED += \ -"X-SubMCUFirmware.elf.s19" \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT += \ -X-SubMCUFirmware.elf.s19 \ - - -# All Target -call-burner := 0 -ifneq ($(strip $(EXECUTABLES)),) -ifneq ($(strip $(BBL_SRCS_QUOTED)),) -call-burner := 1 -endif -endif -ifeq ($(call-burner),1) -all: X-SubMCUFirmware.elf X-SubMCUFirmware.elf.s19 -else -all: X-SubMCUFirmware.elf -endif - -# Tool invocations -X-SubMCUFirmware.elf: $(OBJS) $(USER_OBJS) ../Project_Settings/Linker_Files/ProcessorExpert.lcf - @echo 'Building target: $@' - @echo 'Executing target #31 $@' - @echo 'Invoking: ColdFire Linker' - "$(CF_ToolsDirEnv)/mwldmcf" -o "X-SubMCUFirmware.elf" @@"X-SubMCUFirmware.args" $(USER_OBJS_QUOTED) $(LIBS_QUOTED) - @echo 'Finished building target: $@' - @echo ' ' - -X-SubMCUFirmware.elf.s19: $(BBL_SRCS) $(EXECUTABLES) - @echo 'Executing target #32 $@' - @echo 'Invoking: Burner' - "$(HC08ToolsEnv)/burner.exe" -f="$<" -env"ABS_FILE=$(strip $(EXECUTABLES_OS_FORMAT))" - @echo 'Finished building: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(S_DEPS_QUOTED) "./*/*.obj" "./*.obj" "./*/*/*.obj" $(CPP_DEPS_QUOTED) $(CC_DEPS_QUOTED) $(_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED) $(S_UPPER_DEPS_QUOTED) $(CXX_DEPS_QUOTED) $(ASM_DEPS_QUOTED) $(ASM_UPPER_DEPS_QUOTED) $(C_UPPER_DEPS_QUOTED) $(C++_DEPS_QUOTED) $(EXECUTABLES_QUOTED) "./*/*.d" "./*.d" "./*/*/*.d" $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf $(ProjDirPath)/FLASH/X-SubMCUFirmware.args $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.S19 $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.xMAP - -@echo ' ' - -.PHONY: all clean dependents explicit-dependencies warning-messages -.SECONDARY: - --include ../makefile.targets - -explicit-dependencies: ../Project_Settings/Linker_Files/ProcessorExpert.lcf - -warning-messages: - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/406b06795bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/406b06795bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/406b06795bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/709040bc6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/709040bc6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/709040bc6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/a07acf68d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/a07acf68d2c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/a07acf68d2c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/a09c6b495dc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/a09c6b495dc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/a09c6b495dc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/a0bfd0dc38c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/a0bfd0dc38c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/a0bfd0dc38c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/b024638380c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/b024638380c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/b024638380c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/d06c455f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/d06c455f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/d06c455f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/f077ea695bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/f077ea695bc4001515648e1660054a1a deleted file mode 100644 index c83beda..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/0/f077ea695bc4001515648e1660054a1a +++ /dev/null @@ -1,89 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Sources/Events.c" \ -"../Sources/OneWire.c" \ -"../Sources/main.c" \ -"../Sources/xSub.c" \ - -C_SRCS += \ -../Sources/Events.c \ -../Sources/OneWire.c \ -../Sources/main.c \ -../Sources/xSub.c \ - -OBJS += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -OBJS_QUOTED += \ -"./Sources/Events_c.obj" \ -"./Sources/OneWire_c.obj" \ -"./Sources/main_c.obj" \ -"./Sources/xSub_c.obj" \ - -C_DEPS += \ -./Sources/Events_c.d \ -./Sources/OneWire_c.d \ -./Sources/main_c.d \ -./Sources/xSub_c.d \ - -OBJS_OS_FORMAT += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -C_DEPS_QUOTED += \ -"./Sources/Events_c.d" \ -"./Sources/OneWire_c.d" \ -"./Sources/main_c.d" \ -"./Sources/xSub_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Sources/Events_c.obj: ../Sources/Events.c - @echo 'Building file: $<' - @echo 'Executing target #1 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/Events.args" -o "Sources/Events_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/%.d: ../Sources/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Sources/OneWire_c.obj: ../Sources/OneWire.c - @echo 'Building file: $<' - @echo 'Executing target #2 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/OneWire.args" -o "Sources/OneWire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/main_c.obj: ../Sources/main.c - @echo 'Building file: $<' - @echo 'Executing target #3 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/main.args" -o "Sources/main_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/xSub_c.obj: ../Sources/xSub.c - @echo 'Building file: $<' - @echo 'Executing target #4 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/xSub.args" -o "Sources/xSub_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1/406092e537c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1/406092e537c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1/406092e537c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1/d02b122242c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1/d02b122242c4001515648e1660054a1a deleted file mode 100644 index 4024c4e..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1/d02b122242c4001515648e1660054a1a +++ /dev/null @@ -1,324 +0,0 @@ -/* ################################################################### -** Filename : Events.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Component : Events -** Version : Driver 01.02 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** This is user's event module. -** Put your event handler code here. -** Settings : -** Contents : -** No public methods -** -** ###################################################################*/ -/*! -** @file Events.c -** @version 01.02 -** @brief -** This is user's event module. -** Put your event handler code here. -*/ -/*! -** @addtogroup Events_module Events module documentation -** @{ -*/ -/* MODULE Events */ - -#include "Cpu.h" -#include "Events.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -byte err = 0; -byte data[27]; -byte data2[2]; -byte dataTest[14]; -SerialCom_TComData dataIn[10]; -byte in; - -/* - * Variables - */ -bool led0x00 = FALSE; //0x00 sMCU_OK Led -bool led0x01 = FALSE; //0x01 sCom_In Led -bool led0x02 = FALSE; //0x02 sPC_OK Led -bool led0x03 = FALSE; //0x03 -bool led0x04 = FALSE; //0x04 -bool led0x05 = FALSE; //0x05 -bool led0x06 = FALSE; //0x06 -bool led0x07 = FALSE; //0x07 - -byte SerialIn; -wordbyte wordIn; -byte wordInByte[2]; -word error; -byte STATUS_PC; -//Tiempo -byte tLed = 0x00; -byte tMotor = 0x00; - -/* -** =================================================================== -** Event : Aux_Int_OnInterrupt (module Events) -** -** Component : Aux_Int [TimerInt] -** Description : -** When a timer interrupt occurs this event is called (only -** when the component is enabled - and the events are -** enabled - ). This event is enabled only if a -** is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ - -//Resolucion de 10 ms -void Aux_Int_OnInterrupt(void) -{ - - //Bucle para 100 ms de leds - if(tLed != 10-1) - { - tLed++; - } - else - { - //Control de leds de status - if(led0x00 == TRUE) sMCU_OK_NegVal(); //0x00 - else sMCU_OK_ClrVal(); - if(led0x01 == TRUE) sCom_In_NegVal(); //0x01 - else sCom_In_ClrVal(); - if(led0x02 == TRUE) sPC_OK_NegVal(); //0x02 - else sPC_OK_ClrVal(); - tLed = 0; - } - - - //Bucle para 100 ms de leds - if(tMotor != 2-1) - { - tMotor++; - } - else - { - - } - - - - /*TRANSMISION DE DATA*/ - - //Transmitir DATA - - envioData(); - - - -} - -/* -** =================================================================== -** Event : SerialCom_OnRxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnRxChar(void) -{ - -} - -/* -** =================================================================== -** Event : SerialCom_OnTxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : RESET_INTERRUPT_OnInterrupt (module Events) -** -** Component : RESET_INTERRUPT [ExtInt] -** Description : -** This event is called when an active signal edge/level has -** occurred. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void RESET_INTERRUPT_OnInterrupt(void) -{ - - -} - -/* -** =================================================================== -** Event : ADC_OnEnd (module Events) -** -** Component : ADC [ADC] -** Description : -** This event is called after the measurement (which consists -** of <1 or more conversions>) is/are finished. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void ADC_OnEnd(void) -{ - /* Write your code here ... */ -} - - -/* -** =================================================================== -** Event : SerialCom_OnFullRxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called when the input buffer is full; -** i.e. after reception of the last character -** that was successfully placed into input buffer. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFullRxBuf(void) -{ - SerialCom_TComData dataTest22[10]; - (void)SerialCom_RecvBlock(&dataTest22,10,&err); - (void)SerialCom_ClearRxBuf(); - if(dataIn[9] == 0xFF) - { - //Set the motor speed - setMotorSpeed256(dataIn[0],1); - setMotorSpeed256(dataIn[1],2); - setMotorSpeed256(dataIn[2],3); - setMotorSpeed256(dataIn[3],4); - - //Servo Pos - - servoPanAngle(dataIn[4]);//Resolucin de 0 - 255 - servoTiltAngle(dataIn[5]);//Resolucin de 0 - 255 - - //Set Light bright - (void)LedLight1_SetRatio8(dataIn[6]); - (void)LedLight2_SetRatio8(dataIn[7]); - - STATUS_PC = dataIn[8]; - } - -} - -/* -** =================================================================== -** Event : SerialCom_OnFreeTxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after the last character in output -** buffer is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFreeTxBuf(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnError (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called when a channel error (not the error -** returned by a given method) occurs. The errors can be read -** using method. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnError(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnRxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnRxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnTxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* END Events */ - -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1/f0db2b369cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1/f0db2b369cc6001511f8dea3160ea30e deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1/f0db2b369cc6001511f8dea3160ea30e +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/30a09ac46fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/30a09ac46fc40015180fe241a6b5bfe5 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/5040edbb6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/5040edbb6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/5040edbb6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/5092dc846fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/5092dc846fc40015180fe241a6b5bfe5 deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/5092dc846fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/50c95f8380c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/50c95f8380c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/50c95f8380c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/8051bcd23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/8051bcd23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/8051bcd23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/805cde5035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/805cde5035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/805cde5035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/80e7c61138c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/80e7c61138c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/80e7c61138c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/900f417e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/900f417e7cc400151f08d780d899b0c2 deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/900f417e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/a029e28136c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/a029e28136c8001513b8f2fec7d3ea00 deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/a029e28136c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/a06173d23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/a06173d23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 3c64165..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/a06173d23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Project_Settings/Startup_Code/startcf.c" \ - -C_SRCS += \ -../Project_Settings/Startup_Code/startcf.c \ - -OBJS += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -OBJS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.obj" \ - -C_DEPS += \ -./Project_Settings/Startup_Code/startcf_c.d \ - -OBJS_OS_FORMAT += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -C_DEPS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Project_Settings/Startup_Code/startcf_c.obj: ../Project_Settings/Startup_Code/startcf.c - @echo 'Building file: $<' - @echo 'Executing target #5 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Project_Settings/Startup_Code/startcf.args" -o "Project_Settings/Startup_Code/startcf_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Project_Settings/Startup_Code/%.d: ../Project_Settings/Startup_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/c0f6e4846fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/c0f6e4846fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/c0f6e4846fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/f06d40495dc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/f06d40495dc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/10/f06d40495dc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/30aef4846fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/30aef4846fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/30aef4846fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/40a7df68d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/40a7df68d2c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/40a7df68d2c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/50dfb3d23ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/50dfb3d23ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/50dfb3d23ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/50f813bc37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/50f813bc37c8001513b8f2fec7d3ea00 deleted file mode 100644 index d2c88ee..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/50f813bc37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,141 +0,0 @@ -/* ################################################################### -** Filename : main.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Version : Driver 01.00 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** Main module. -** This module contains user's application code. -** Settings : -** Contents : -** No public methods -** Firmware made by Danilo D. for the Mechatronics Research and Development of the -** Universidad Simn Bolvar (USB) -** www.usb.ve -** mecatronica.labc.usb.ve -** ###################################################################*/ -/*! -** @file main.c -** @version 01.00 -** @brief -** Main module. -** This module contains user's application code. -*/ -/*! -** @addtogroup main_module main module documentation -** @{ -*/ -/* MODULE main */ - - -/* Including needed modules to compile this module/procedure */ -#include "Cpu.h" -#include "Events.h" -#include "M1_ESC.h" -#include "M2_ESC.h" -#include "M3_ESC.h" -#include "M4_ESC.h" -#include "S_PanCamera.h" -#include "S_TiltCamera.h" -#include "sMCU_OK.h" -#include "sPC_OK.h" -#include "sCom_In.h" -#include "Aux_Int.h" -#include "SerialCom.h" -#include "RESET_INTERRUPT.h" -#include "ADC.h" -#include "LedLight1.h" -#include "LedLight2.h" -#include "CS1.h" -#include "I2C.h" -#include "PresenciaAgua2.h" -#include "PresenciaAgua1.h" -#include "S_Wire.h" -/* Include shared modules, which are used for whole project */ -#include "PE_Types.h" -#include "PE_Error.h" -#include "PE_Const.h" -#include "IO_Map.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -void main(void) -{ - /* Write your local variable definition here */ - byte byteDC = 0x00; - word DC = 0; - word DC2 = 0x0000; - byte pDC = 0; //% - word err = 0x00; - - byte Agua1 = 0x00; - byte Agua2 = 0x00; - /*** Processor Expert internal initialization. DON'T REMOVE THIS CODE!!! ***/ - PE_low_level_init(); - /*** End of Processor Expert internal initialization. ***/ - - /* Write your code here */ - /* For example: for(;;) { } */ - //delay(5000); - /* - sMCU_OK_W(); - sCom_In_W(); - sPC_OK_NW(); - initMxSub(1); - */ - //initMxSub(1); - //delay(100); - - - /**********I2C test********/ - //initMPU(); - //initHMC6352(); - //sMCU_OK_W(); - //sPC_OK_W(); - //(void)initxSub(); - - //sPC_OK_W(); - if(initxSub() == 0xFF) - { - sMCU_OK_W(); - beginMeasure = TRUE; - } - else sMCU_OK_NW(); - getDataAll(); - for(;;) - { - - envioData(); - //delay(10); - } - - - - - - - - - /*** Don't write any code pass this line, or it will be deleted during code generation. ***/ - /*** Processor Expert end of main routine. DON'T MODIFY THIS CODE!!! ***/ - for(;;){} - /*** Processor Expert end of main routine. DON'T WRITE CODE BELOW!!! ***/ -} /*** End of main routine. DO NOT MODIFY THIS TEXT!!! ***/ - -/* END main */ -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/9033dcd9cec5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/9033dcd9cec5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/9033dcd9cec5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/907fb58280c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/907fb58280c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/907fb58280c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/a02d9bcf3ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/a02d9bcf3ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/a02d9bcf3ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/b0e398cf3ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/b0e398cf3ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/b0e398cf3ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/c06365f05cc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/c06365f05cc4001515648e1660054a1a deleted file mode 100644 index 02de40f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/c06365f05cc4001515648e1660054a1a +++ /dev/null @@ -1,119 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -#Progress monitor hint: 30 -first : all --include ../makefile.init - -# This file contains definitions of environment variables used in the makefiles and .args files if exist. --include makefile.local - -RM := "$(GNU_Make_Install_DirEnv)/rm" -f - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Sources/subdir.mk --include Project_Settings/Startup_Code/subdir.mk --include Generated_Code/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXECUTABLES += \ -X-SubMCUFirmware.elf \ - -EXECUTABLES_QUOTED += \ -"X-SubMCUFirmware.elf" \ - -EXECUTABLES_OS_FORMAT += \ -X-SubMCUFirmware.elf \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS += \ -X-SubMCUFirmware.elf.s19 \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED += \ -"X-SubMCUFirmware.elf.s19" \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT += \ -X-SubMCUFirmware.elf.s19 \ - - -# All Target -call-burner := 0 -ifneq ($(strip $(EXECUTABLES)),) -ifneq ($(strip $(BBL_SRCS_QUOTED)),) -call-burner := 1 -endif -endif -ifeq ($(call-burner),1) -all: X-SubMCUFirmware.elf X-SubMCUFirmware.elf.s19 -else -all: X-SubMCUFirmware.elf -endif - -# Tool invocations -X-SubMCUFirmware.elf: $(OBJS) $(USER_OBJS) ../Project_Settings/Linker_Files/ProcessorExpert.lcf - @echo 'Building target: $@' - @echo 'Executing target #31 $@' - @echo 'Invoking: ColdFire Linker' - "$(CF_ToolsDirEnv)/mwldmcf" -o "X-SubMCUFirmware.elf" @@"X-SubMCUFirmware.args" $(USER_OBJS_QUOTED) $(LIBS_QUOTED) - @echo 'Finished building target: $@' - @echo ' ' - -X-SubMCUFirmware.elf.s19: $(BBL_SRCS) $(EXECUTABLES) - @echo 'Executing target #32 $@' - @echo 'Invoking: Burner' - "$(HC08ToolsEnv)/burner.exe" -f="$<" -env"ABS_FILE=$(strip $(EXECUTABLES_OS_FORMAT))" - @echo 'Finished building: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(S_DEPS_QUOTED) "./*/*.obj" "./*.obj" "./*/*/*.obj" $(CPP_DEPS_QUOTED) $(CC_DEPS_QUOTED) $(_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED) $(S_UPPER_DEPS_QUOTED) $(CXX_DEPS_QUOTED) $(ASM_DEPS_QUOTED) $(ASM_UPPER_DEPS_QUOTED) $(C_UPPER_DEPS_QUOTED) $(C++_DEPS_QUOTED) $(EXECUTABLES_QUOTED) "./*/*.d" "./*.d" "./*/*/*.d" $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf $(ProjDirPath)/FLASH/X-SubMCUFirmware.args $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.S19 $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.xMAP - -@echo ' ' - -.PHONY: all clean dependents explicit-dependencies warning-messages -.SECONDARY: - --include ../makefile.targets - -explicit-dependencies: ../Project_Settings/Linker_Files/ProcessorExpert.lcf - -warning-messages: - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/d09523a580c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/d09523a580c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/d09523a580c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/e04befd26fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/e04befd26fc40015180fe241a6b5bfe5 deleted file mode 100644 index c83beda..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/11/e04befd26fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,89 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Sources/Events.c" \ -"../Sources/OneWire.c" \ -"../Sources/main.c" \ -"../Sources/xSub.c" \ - -C_SRCS += \ -../Sources/Events.c \ -../Sources/OneWire.c \ -../Sources/main.c \ -../Sources/xSub.c \ - -OBJS += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -OBJS_QUOTED += \ -"./Sources/Events_c.obj" \ -"./Sources/OneWire_c.obj" \ -"./Sources/main_c.obj" \ -"./Sources/xSub_c.obj" \ - -C_DEPS += \ -./Sources/Events_c.d \ -./Sources/OneWire_c.d \ -./Sources/main_c.d \ -./Sources/xSub_c.d \ - -OBJS_OS_FORMAT += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -C_DEPS_QUOTED += \ -"./Sources/Events_c.d" \ -"./Sources/OneWire_c.d" \ -"./Sources/main_c.d" \ -"./Sources/xSub_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Sources/Events_c.obj: ../Sources/Events.c - @echo 'Building file: $<' - @echo 'Executing target #1 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/Events.args" -o "Sources/Events_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/%.d: ../Sources/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Sources/OneWire_c.obj: ../Sources/OneWire.c - @echo 'Building file: $<' - @echo 'Executing target #2 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/OneWire.args" -o "Sources/OneWire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/main_c.obj: ../Sources/main.c - @echo 'Building file: $<' - @echo 'Executing target #3 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/main.args" -o "Sources/main_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/xSub_c.obj: ../Sources/xSub.c - @echo 'Building file: $<' - @echo 'Executing target #4 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/xSub.args" -o "Sources/xSub_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/10baecf682c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/10baecf682c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/10baecf682c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/3052ddbf80c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/3052ddbf80c8001513b8f2fec7d3ea00 deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/3052ddbf80c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/60e24ecf3ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/60e24ecf3ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/60e24ecf3ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/70ce50d635c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/70ce50d635c8001513b8f2fec7d3ea00 deleted file mode 100644 index 01911bd..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/70ce50d635c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,140 +0,0 @@ -/* ################################################################### -** Filename : main.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Version : Driver 01.00 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** Main module. -** This module contains user's application code. -** Settings : -** Contents : -** No public methods -** Firmware made by Danilo D. for the Mechatronics Research and Development of the -** Universidad Simn Bolvar (USB) -** www.usb.ve -** mecatronica.labc.usb.ve -** ###################################################################*/ -/*! -** @file main.c -** @version 01.00 -** @brief -** Main module. -** This module contains user's application code. -*/ -/*! -** @addtogroup main_module main module documentation -** @{ -*/ -/* MODULE main */ - - -/* Including needed modules to compile this module/procedure */ -#include "Cpu.h" -#include "Events.h" -#include "M1_ESC.h" -#include "M2_ESC.h" -#include "M3_ESC.h" -#include "M4_ESC.h" -#include "S_PanCamera.h" -#include "S_TiltCamera.h" -#include "sMCU_OK.h" -#include "sPC_OK.h" -#include "sCom_In.h" -#include "Aux_Int.h" -#include "SerialCom.h" -#include "RESET_INTERRUPT.h" -#include "ADC.h" -#include "LedLight1.h" -#include "LedLight2.h" -#include "CS1.h" -#include "I2C.h" -#include "PresenciaAgua2.h" -#include "PresenciaAgua1.h" -#include "S_Wire.h" -/* Include shared modules, which are used for whole project */ -#include "PE_Types.h" -#include "PE_Error.h" -#include "PE_Const.h" -#include "IO_Map.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -void main(void) -{ - /* Write your local variable definition here */ - byte byteDC = 0x00; - word DC = 0; - word DC2 = 0x0000; - byte pDC = 0; //% - word err = 0x00; - - byte Agua1 = 0x00; - byte Agua2 = 0x00; - /*** Processor Expert internal initialization. DON'T REMOVE THIS CODE!!! ***/ - PE_low_level_init(); - /*** End of Processor Expert internal initialization. ***/ - - /* Write your code here */ - /* For example: for(;;) { } */ - //delay(5000); - /* - sMCU_OK_W(); - sCom_In_W(); - sPC_OK_NW(); - initMxSub(1); - */ - //initMxSub(1); - //delay(100); - - - /**********I2C test********/ - //initMPU(); - //initHMC6352(); - //sMCU_OK_W(); - //sPC_OK_W(); - //(void)initxSub(); - - sPC_OK_W(); - if(initxSub() == 0xFF) - { - sMCU_OK_W(); - } - else sMCU_OK_NW(); - getDataAll(); - for(;;) - { - getDataAll(); - envioData(); - delay(10); - } - - - - - - - - - /*** Don't write any code pass this line, or it will be deleted during code generation. ***/ - /*** Processor Expert end of main routine. DON'T MODIFY THIS CODE!!! ***/ - for(;;){} - /*** Processor Expert end of main routine. DON'T WRITE CODE BELOW!!! ***/ -} /*** End of main routine. DO NOT MODIFY THIS TEXT!!! ***/ - -/* END main */ -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/a062e87a35c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/a062e87a35c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/a062e87a35c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/d07e675035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/d07e675035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/12/d07e675035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/10c5ea2d70c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/10c5ea2d70c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/10c5ea2d70c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/40f1c9bf80c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/40f1c9bf80c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/40f1c9bf80c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/60c4e12d70c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/60c4e12d70c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/60c4e12d70c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/d020a3c36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/d020a3c36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/d020a3c36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/f012f7c863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/f012f7c863c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/13/f012f7c863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/00c4fdc13ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/00c4fdc13ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/00c4fdc13ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/2074a4c483c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/2074a4c483c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/2074a4c483c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/3084ab3e6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/3084ab3e6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/3084ab3e6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/4090ce68d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/4090ce68d2c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/4090ce68d2c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0714abc37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0714abc37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 7a10f5b..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0714abc37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Init.c" \ - -C_SRCS += \ -../Init.c \ - -OBJS += \ -./Init_c.obj \ - -OBJS_QUOTED += \ -"./Init_c.obj" \ - -C_DEPS += \ -./Init_c.d \ - -OBJS_OS_FORMAT += \ -./Init_c.obj \ - -C_DEPS_QUOTED += \ -"./Init_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Init_c.obj: ../Init.c - @echo 'Building file: $<' - @echo 'Executing target #6 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Init.args" -o "./Init_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Init_c.d: ../Init.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/a08243369cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/a08243369cc6001511f8dea3160ea30e deleted file mode 100644 index 91972f6..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/a08243369cc6001511f8dea3160ea30e +++ /dev/null @@ -1,45 +0,0 @@ -"./Generated_Code/sPC_OK_c.obj" -"./Generated_Code/sMCU_OK_c.obj" -"./Generated_Code/sCom_In_c.obj" -"./Generated_Code/Vectors_c.obj" -"./Generated_Code/SerialCom_c.obj" -"./Generated_Code/S_Wire_c.obj" -"./Generated_Code/S_TiltCamera_c.obj" -"./Generated_Code/S_PanCamera_c.obj" -"./Generated_Code/RESET_INTERRUPT_c.obj" -"./Generated_Code/PresenciaAgua2_c.obj" -"./Generated_Code/PresenciaAgua1_c.obj" -"./Generated_Code/PE_Timer_c.obj" -"./Generated_Code/M4_ESC_c.obj" -"./Generated_Code/M3_ESC_c.obj" -"./Generated_Code/M2_ESC_c.obj" -"./Generated_Code/M1_ESC_c.obj" -"./Generated_Code/LedLight2_c.obj" -"./Generated_Code/LedLight1_c.obj" -"./Generated_Code/IO_Map_c.obj" -"./Generated_Code/I2C_c.obj" -"./Generated_Code/Cpu_c.obj" -"./Generated_Code/CS1_c.obj" -"./Generated_Code/Aux_Int_c.obj" -"./Generated_Code/ADC_c.obj" -"./Init_c.obj" -"./Project_Settings/Startup_Code/startcf_c.obj" -"./Sources/xSub_c.obj" -"./Sources/main_c.obj" -"./Sources/OneWire_c.obj" -"./Sources/Events_c.obj" --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --nostdlib -"$(ProjDirPath)/Project_Settings/Linker_Files/ProcessorExpert.lcf" --m __startup --L"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/lib" --application --map --map keep --srec --sreclength 252 --sreceol dos --w on \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/d01bbecb5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/d01bbecb5bc4001515648e1660054a1a deleted file mode 100644 index 17c561c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/14/d01bbecb5bc4001515648e1660054a1a +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################ -# These macros are used by makefiles and argument files. -# When a space is included in the path and quotes (") cannot be used, -# a _ESCAPE version of the macro is added that escapes the space with backslash (\). -################################################################################ - -export HC08ToolsEnv=$(CWInstallLocationEnv)/MCU/prog -export GNU_Make_Install_DirEnv=$(CWInstallLocationEnv)/gnu/bin -export ProjDirPath=C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU Firmware/X-Sub MCU Firmware -export CWInstallLocationEnv=C:/Freescale/CW MCU v10.6 -export MCUToolsBaseDirEnv=$(CWInstallLocationEnv)/MCU -export CF_ToolsDirEnv=$(CWInstallLocationEnv)/MCU/ColdFire_Tools/Command_Line_Tools diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/3031e62d70c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/3031e62d70c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/3031e62d70c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/40b28a7a35c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/40b28a7a35c8001513b8f2fec7d3ea00 deleted file mode 100644 index 3c64165..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/40b28a7a35c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Project_Settings/Startup_Code/startcf.c" \ - -C_SRCS += \ -../Project_Settings/Startup_Code/startcf.c \ - -OBJS += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -OBJS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.obj" \ - -C_DEPS += \ -./Project_Settings/Startup_Code/startcf_c.d \ - -OBJS_OS_FORMAT += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -C_DEPS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Project_Settings/Startup_Code/startcf_c.obj: ../Project_Settings/Startup_Code/startcf.c - @echo 'Building file: $<' - @echo 'Executing target #5 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Project_Settings/Startup_Code/startcf.args" -o "Project_Settings/Startup_Code/startcf_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Project_Settings/Startup_Code/%.d: ../Project_Settings/Startup_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/5003e4b840c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/5003e4b840c4001515648e1660054a1a deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/5003e4b840c4001515648e1660054a1a +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/709eb6d23ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/709eb6d23ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/709eb6d23ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/802b217e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/802b217e7cc400151f08d780d899b0c2 deleted file mode 100644 index 49ef9f9..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/802b217e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,20 +0,0 @@ -Generated_Code/I2C_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\I2C.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\I2C.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/90e79ce537c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/90e79ce537c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/90e79ce537c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/d031a0d735c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/d031a0d735c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/15/d031a0d735c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/205924a580c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/205924a580c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/205924a580c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/20bf59d23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/20bf59d23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/20bf59d23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/506785a7d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/506785a7d2c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/506785a7d2c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/60e9f85035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/60e9f85035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 17c561c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/60e9f85035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################ -# These macros are used by makefiles and argument files. -# When a space is included in the path and quotes (") cannot be used, -# a _ESCAPE version of the macro is added that escapes the space with backslash (\). -################################################################################ - -export HC08ToolsEnv=$(CWInstallLocationEnv)/MCU/prog -export GNU_Make_Install_DirEnv=$(CWInstallLocationEnv)/gnu/bin -export ProjDirPath=C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU Firmware/X-Sub MCU Firmware -export CWInstallLocationEnv=C:/Freescale/CW MCU v10.6 -export MCUToolsBaseDirEnv=$(CWInstallLocationEnv)/MCU -export CF_ToolsDirEnv=$(CWInstallLocationEnv)/MCU/ColdFire_Tools/Command_Line_Tools diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/80509dcf3ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/80509dcf3ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/80509dcf3ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/a05c8cbc37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/a05c8cbc37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/a05c8cbc37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/a07f85cb5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/a07f85cb5bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/a07f85cb5bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/e080af8136c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/e080af8136c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/16/e080af8136c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/20af97c36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/20af97c36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/20af97c36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/50b232495dc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/50b232495dc4001515648e1660054a1a deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/50b232495dc4001515648e1660054a1a +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/60435ec483c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/60435ec483c4001518258e1c1f15aebe deleted file mode 100644 index 7a10f5b..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/60435ec483c4001518258e1c1f15aebe +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Init.c" \ - -C_SRCS += \ -../Init.c \ - -OBJS += \ -./Init_c.obj \ - -OBJS_QUOTED += \ -"./Init_c.obj" \ - -C_DEPS += \ -./Init_c.d \ - -OBJS_OS_FORMAT += \ -./Init_c.obj \ - -C_DEPS_QUOTED += \ -"./Init_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Init_c.obj: ../Init.c - @echo 'Building file: $<' - @echo 'Executing target #6 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Init.args" -o "./Init_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Init_c.d: ../Init.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/b0b8f3d26fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/b0b8f3d26fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/b0b8f3d26fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/c083bbcb5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/c083bbcb5bc4001515648e1660054a1a deleted file mode 100644 index 91972f6..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/c083bbcb5bc4001515648e1660054a1a +++ /dev/null @@ -1,45 +0,0 @@ -"./Generated_Code/sPC_OK_c.obj" -"./Generated_Code/sMCU_OK_c.obj" -"./Generated_Code/sCom_In_c.obj" -"./Generated_Code/Vectors_c.obj" -"./Generated_Code/SerialCom_c.obj" -"./Generated_Code/S_Wire_c.obj" -"./Generated_Code/S_TiltCamera_c.obj" -"./Generated_Code/S_PanCamera_c.obj" -"./Generated_Code/RESET_INTERRUPT_c.obj" -"./Generated_Code/PresenciaAgua2_c.obj" -"./Generated_Code/PresenciaAgua1_c.obj" -"./Generated_Code/PE_Timer_c.obj" -"./Generated_Code/M4_ESC_c.obj" -"./Generated_Code/M3_ESC_c.obj" -"./Generated_Code/M2_ESC_c.obj" -"./Generated_Code/M1_ESC_c.obj" -"./Generated_Code/LedLight2_c.obj" -"./Generated_Code/LedLight1_c.obj" -"./Generated_Code/IO_Map_c.obj" -"./Generated_Code/I2C_c.obj" -"./Generated_Code/Cpu_c.obj" -"./Generated_Code/CS1_c.obj" -"./Generated_Code/Aux_Int_c.obj" -"./Generated_Code/ADC_c.obj" -"./Init_c.obj" -"./Project_Settings/Startup_Code/startcf_c.obj" -"./Sources/xSub_c.obj" -"./Sources/main_c.obj" -"./Sources/OneWire_c.obj" -"./Sources/Events_c.obj" --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --nostdlib -"$(ProjDirPath)/Project_Settings/Linker_Files/ProcessorExpert.lcf" --m __startup --L"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/lib" --application --map --map keep --srec --sreclength 252 --sreceol dos --w on \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/d08a9a3f3dc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/d08a9a3f3dc4001515648e1660054a1a deleted file mode 100644 index 7a8d549..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/d08a9a3f3dc4001515648e1660054a1a +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 87 - \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/d0a6fbc863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/d0a6fbc863c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/d0a6fbc863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/e00208c963c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/e00208c963c40015180fe241a6b5bfe5 deleted file mode 100644 index 02de40f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/e00208c963c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,119 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -#Progress monitor hint: 30 -first : all --include ../makefile.init - -# This file contains definitions of environment variables used in the makefiles and .args files if exist. --include makefile.local - -RM := "$(GNU_Make_Install_DirEnv)/rm" -f - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Sources/subdir.mk --include Project_Settings/Startup_Code/subdir.mk --include Generated_Code/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXECUTABLES += \ -X-SubMCUFirmware.elf \ - -EXECUTABLES_QUOTED += \ -"X-SubMCUFirmware.elf" \ - -EXECUTABLES_OS_FORMAT += \ -X-SubMCUFirmware.elf \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS += \ -X-SubMCUFirmware.elf.s19 \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED += \ -"X-SubMCUFirmware.elf.s19" \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT += \ -X-SubMCUFirmware.elf.s19 \ - - -# All Target -call-burner := 0 -ifneq ($(strip $(EXECUTABLES)),) -ifneq ($(strip $(BBL_SRCS_QUOTED)),) -call-burner := 1 -endif -endif -ifeq ($(call-burner),1) -all: X-SubMCUFirmware.elf X-SubMCUFirmware.elf.s19 -else -all: X-SubMCUFirmware.elf -endif - -# Tool invocations -X-SubMCUFirmware.elf: $(OBJS) $(USER_OBJS) ../Project_Settings/Linker_Files/ProcessorExpert.lcf - @echo 'Building target: $@' - @echo 'Executing target #31 $@' - @echo 'Invoking: ColdFire Linker' - "$(CF_ToolsDirEnv)/mwldmcf" -o "X-SubMCUFirmware.elf" @@"X-SubMCUFirmware.args" $(USER_OBJS_QUOTED) $(LIBS_QUOTED) - @echo 'Finished building target: $@' - @echo ' ' - -X-SubMCUFirmware.elf.s19: $(BBL_SRCS) $(EXECUTABLES) - @echo 'Executing target #32 $@' - @echo 'Invoking: Burner' - "$(HC08ToolsEnv)/burner.exe" -f="$<" -env"ABS_FILE=$(strip $(EXECUTABLES_OS_FORMAT))" - @echo 'Finished building: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(S_DEPS_QUOTED) "./*/*.obj" "./*.obj" "./*/*/*.obj" $(CPP_DEPS_QUOTED) $(CC_DEPS_QUOTED) $(_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED) $(S_UPPER_DEPS_QUOTED) $(CXX_DEPS_QUOTED) $(ASM_DEPS_QUOTED) $(ASM_UPPER_DEPS_QUOTED) $(C_UPPER_DEPS_QUOTED) $(C++_DEPS_QUOTED) $(EXECUTABLES_QUOTED) "./*/*.d" "./*.d" "./*/*/*.d" $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf $(ProjDirPath)/FLASH/X-SubMCUFirmware.args $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.S19 $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.xMAP - -@echo ' ' - -.PHONY: all clean dependents explicit-dependencies warning-messages -.SECONDARY: - --include ../makefile.targets - -explicit-dependencies: ../Project_Settings/Linker_Files/ProcessorExpert.lcf - -warning-messages: - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/e0807a1bd4c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/e0807a1bd4c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/17/e0807a1bd4c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/10677d1bd4c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/10677d1bd4c5001515acf159be79a4ca deleted file mode 100644 index 02de40f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/10677d1bd4c5001515acf159be79a4ca +++ /dev/null @@ -1,119 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -#Progress monitor hint: 30 -first : all --include ../makefile.init - -# This file contains definitions of environment variables used in the makefiles and .args files if exist. --include makefile.local - -RM := "$(GNU_Make_Install_DirEnv)/rm" -f - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Sources/subdir.mk --include Project_Settings/Startup_Code/subdir.mk --include Generated_Code/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXECUTABLES += \ -X-SubMCUFirmware.elf \ - -EXECUTABLES_QUOTED += \ -"X-SubMCUFirmware.elf" \ - -EXECUTABLES_OS_FORMAT += \ -X-SubMCUFirmware.elf \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS += \ -X-SubMCUFirmware.elf.s19 \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED += \ -"X-SubMCUFirmware.elf.s19" \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT += \ -X-SubMCUFirmware.elf.s19 \ - - -# All Target -call-burner := 0 -ifneq ($(strip $(EXECUTABLES)),) -ifneq ($(strip $(BBL_SRCS_QUOTED)),) -call-burner := 1 -endif -endif -ifeq ($(call-burner),1) -all: X-SubMCUFirmware.elf X-SubMCUFirmware.elf.s19 -else -all: X-SubMCUFirmware.elf -endif - -# Tool invocations -X-SubMCUFirmware.elf: $(OBJS) $(USER_OBJS) ../Project_Settings/Linker_Files/ProcessorExpert.lcf - @echo 'Building target: $@' - @echo 'Executing target #31 $@' - @echo 'Invoking: ColdFire Linker' - "$(CF_ToolsDirEnv)/mwldmcf" -o "X-SubMCUFirmware.elf" @@"X-SubMCUFirmware.args" $(USER_OBJS_QUOTED) $(LIBS_QUOTED) - @echo 'Finished building target: $@' - @echo ' ' - -X-SubMCUFirmware.elf.s19: $(BBL_SRCS) $(EXECUTABLES) - @echo 'Executing target #32 $@' - @echo 'Invoking: Burner' - "$(HC08ToolsEnv)/burner.exe" -f="$<" -env"ABS_FILE=$(strip $(EXECUTABLES_OS_FORMAT))" - @echo 'Finished building: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(S_DEPS_QUOTED) "./*/*.obj" "./*.obj" "./*/*/*.obj" $(CPP_DEPS_QUOTED) $(CC_DEPS_QUOTED) $(_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED) $(S_UPPER_DEPS_QUOTED) $(CXX_DEPS_QUOTED) $(ASM_DEPS_QUOTED) $(ASM_UPPER_DEPS_QUOTED) $(C_UPPER_DEPS_QUOTED) $(C++_DEPS_QUOTED) $(EXECUTABLES_QUOTED) "./*/*.d" "./*.d" "./*/*/*.d" $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf $(ProjDirPath)/FLASH/X-SubMCUFirmware.args $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.S19 $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.xMAP - -@echo ' ' - -.PHONY: all clean dependents explicit-dependencies warning-messages -.SECONDARY: - --include ../makefile.targets - -explicit-dependencies: ../Project_Settings/Linker_Files/ProcessorExpert.lcf - -warning-messages: - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/303c517e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/303c517e7cc400151f08d780d899b0c2 deleted file mode 100644 index 688ee08..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/303c517e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,42 +0,0 @@ -Sources/main_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\main.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\Events.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M1_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M2_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M3_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M4_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_PanCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_TiltCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sMCU_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sPC_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sCom_In.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Aux_Int.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\SerialCom.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\RESET_INTERRUPT.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\ADC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\CS1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\I2C.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_Wire.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\xSub.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\OneWire.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/30a882a7d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/30a882a7d2c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/30a882a7d2c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/50d581bc37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/50d581bc37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/50d581bc37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/609d4fc483c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/609d4fc483c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/609d4fc483c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/60dfd6ef5cc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/60dfd6ef5cc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/60dfd6ef5cc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/702e718380c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/702e718380c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/702e718380c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/70b325cd7fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/70b325cd7fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/70b325cd7fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/70fc231bd4c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/70fc231bd4c5001515acf159be79a4ca deleted file mode 100644 index c83beda..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/70fc231bd4c5001515acf159be79a4ca +++ /dev/null @@ -1,89 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Sources/Events.c" \ -"../Sources/OneWire.c" \ -"../Sources/main.c" \ -"../Sources/xSub.c" \ - -C_SRCS += \ -../Sources/Events.c \ -../Sources/OneWire.c \ -../Sources/main.c \ -../Sources/xSub.c \ - -OBJS += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -OBJS_QUOTED += \ -"./Sources/Events_c.obj" \ -"./Sources/OneWire_c.obj" \ -"./Sources/main_c.obj" \ -"./Sources/xSub_c.obj" \ - -C_DEPS += \ -./Sources/Events_c.d \ -./Sources/OneWire_c.d \ -./Sources/main_c.d \ -./Sources/xSub_c.d \ - -OBJS_OS_FORMAT += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -C_DEPS_QUOTED += \ -"./Sources/Events_c.d" \ -"./Sources/OneWire_c.d" \ -"./Sources/main_c.d" \ -"./Sources/xSub_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Sources/Events_c.obj: ../Sources/Events.c - @echo 'Building file: $<' - @echo 'Executing target #1 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/Events.args" -o "Sources/Events_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/%.d: ../Sources/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Sources/OneWire_c.obj: ../Sources/OneWire.c - @echo 'Building file: $<' - @echo 'Executing target #2 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/OneWire.args" -o "Sources/OneWire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/main_c.obj: ../Sources/main.c - @echo 'Building file: $<' - @echo 'Executing target #3 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/main.args" -o "Sources/main_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/xSub_c.obj: ../Sources/xSub.c - @echo 'Building file: $<' - @echo 'Executing target #4 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/xSub.args" -o "Sources/xSub_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/90c4631bd4c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/90c4631bd4c5001515acf159be79a4ca deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/90c4631bd4c5001515acf159be79a4ca +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/a0910b1238c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/a0910b1238c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/a0910b1238c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/d0583a7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/d0583a7e7cc400151f08d780d899b0c2 deleted file mode 100644 index 7614f58..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/18/d0583a7e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,40 +0,0 @@ -Generated_Code/SerialCom_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\SerialCom.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\SerialCom.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\Events.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M1_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M2_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M3_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M4_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_PanCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_TiltCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sMCU_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sPC_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sCom_In.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Aux_Int.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\RESET_INTERRUPT.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\ADC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\CS1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\I2C.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_Wire.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/007ea1c46fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/007ea1c46fc40015180fe241a6b5bfe5 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/1025b8d23ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/1025b8d23ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/1025b8d23ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/40249ce537c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/40249ce537c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/40249ce537c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/70ae8ec36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/70ae8ec36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 61b9d95..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/70ae8ec36fc40015180fe241a6b5bfe5 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/9057dd2d70c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/9057dd2d70c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/9057dd2d70c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/e0253dc943c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/e0253dc943c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/e0253dc943c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/e0be147d3dc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/e0be147d3dc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/19/e0be147d3dc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/00c5b5495dc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/00c5b5495dc4001515648e1660054a1a deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/00c5b5495dc4001515648e1660054a1a +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/1085c97c3dc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/1085c97c3dc8001513b8f2fec7d3ea00 deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/1085c97c3dc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/8024377e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/8024377e7cc400151f08d780d899b0c2 deleted file mode 100644 index 0c41f0b..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/8024377e7cc400151f08d780d899b0c2 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/80c06bd23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/80c06bd23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/80c06bd23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/a065886a5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/a065886a5bc4001515648e1660054a1a deleted file mode 100644 index 17c561c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/a065886a5bc4001515648e1660054a1a +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################ -# These macros are used by makefiles and argument files. -# When a space is included in the path and quotes (") cannot be used, -# a _ESCAPE version of the macro is added that escapes the space with backslash (\). -################################################################################ - -export HC08ToolsEnv=$(CWInstallLocationEnv)/MCU/prog -export GNU_Make_Install_DirEnv=$(CWInstallLocationEnv)/gnu/bin -export ProjDirPath=C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU Firmware/X-Sub MCU Firmware -export CWInstallLocationEnv=C:/Freescale/CW MCU v10.6 -export MCUToolsBaseDirEnv=$(CWInstallLocationEnv)/MCU -export CF_ToolsDirEnv=$(CWInstallLocationEnv)/MCU/ColdFire_Tools/Command_Line_Tools diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/d00c1f6837c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/d00c1f6837c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/d00c1f6837c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/d08ec2dc38c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/d08ec2dc38c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/d08ec2dc38c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/e095aed23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/e095aed23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1a/e095aed23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/2022dbd9cec5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/2022dbd9cec5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/2022dbd9cec5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/5000056963c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/5000056963c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/5000056963c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/5027237e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/5027237e7cc400151f08d780d899b0c2 deleted file mode 100644 index 79e254e..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/5027237e7cc400151f08d780d899b0c2 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/80491e6837c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/80491e6837c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/80491e6837c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/e05c22c639c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/e05c22c639c8001513b8f2fec7d3ea00 deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1b/e05c22c639c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/4041ee5d37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/4041ee5d37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 277176d..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/4041ee5d37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,140 +0,0 @@ -/* ################################################################### -** Filename : main.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Version : Driver 01.00 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** Main module. -** This module contains user's application code. -** Settings : -** Contents : -** No public methods -** Firmware made by Danilo D. for the Mechatronics Research and Development of the -** Universidad Simn Bolvar (USB) -** www.usb.ve -** mecatronica.labc.usb.ve -** ###################################################################*/ -/*! -** @file main.c -** @version 01.00 -** @brief -** Main module. -** This module contains user's application code. -*/ -/*! -** @addtogroup main_module main module documentation -** @{ -*/ -/* MODULE main */ - - -/* Including needed modules to compile this module/procedure */ -#include "Cpu.h" -#include "Events.h" -#include "M1_ESC.h" -#include "M2_ESC.h" -#include "M3_ESC.h" -#include "M4_ESC.h" -#include "S_PanCamera.h" -#include "S_TiltCamera.h" -#include "sMCU_OK.h" -#include "sPC_OK.h" -#include "sCom_In.h" -#include "Aux_Int.h" -#include "SerialCom.h" -#include "RESET_INTERRUPT.h" -#include "ADC.h" -#include "LedLight1.h" -#include "LedLight2.h" -#include "CS1.h" -#include "I2C.h" -#include "PresenciaAgua2.h" -#include "PresenciaAgua1.h" -#include "S_Wire.h" -/* Include shared modules, which are used for whole project */ -#include "PE_Types.h" -#include "PE_Error.h" -#include "PE_Const.h" -#include "IO_Map.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -void main(void) -{ - /* Write your local variable definition here */ - byte byteDC = 0x00; - word DC = 0; - word DC2 = 0x0000; - byte pDC = 0; //% - word err = 0x00; - - byte Agua1 = 0x00; - byte Agua2 = 0x00; - /*** Processor Expert internal initialization. DON'T REMOVE THIS CODE!!! ***/ - PE_low_level_init(); - /*** End of Processor Expert internal initialization. ***/ - - /* Write your code here */ - /* For example: for(;;) { } */ - //delay(5000); - /* - sMCU_OK_W(); - sCom_In_W(); - sPC_OK_NW(); - initMxSub(1); - */ - //initMxSub(1); - //delay(100); - - - /**********I2C test********/ - //initMPU(); - //initHMC6352(); - //sMCU_OK_W(); - //sPC_OK_W(); - //(void)initxSub(); - - sPC_OK_W(); - if(initxSub() == 0xFF) - { - sMCU_OK_W(); - } - else sMCU_OK_NW(); - getDataAll(); - for(;;) - { - - envioData(); - //delay(10); - } - - - - - - - - - /*** Don't write any code pass this line, or it will be deleted during code generation. ***/ - /*** Processor Expert end of main routine. DON'T MODIFY THIS CODE!!! ***/ - for(;;){} - /*** Processor Expert end of main routine. DON'T WRITE CODE BELOW!!! ***/ -} /*** End of main routine. DO NOT MODIFY THIS TEXT!!! ***/ - -/* END main */ -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/601e6df839c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/601e6df839c8001513b8f2fec7d3ea00 deleted file mode 100644 index 8701cf8..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/601e6df839c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,558 +0,0 @@ -/* - * xSub.c - * - * Created on: Jun 11, 2015 - * Author: ddtdanilo - */ - -/*Includes*/ -#include "Cpu.h" -#include "Events.h" -#include "M1_ESC.h" -#include "M2_ESC.h" -#include "M3_ESC.h" -#include "M4_ESC.h" -/* Include shared modules, which are used for whole project */ -#include "PE_Types.h" -#include "PE_Error.h" -#include "PE_Const.h" -#include "IO_Map.h" - -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - - - - -//Cambia el Status de un LED -//Hace que se mantenga encendido o titilando si est activo. -void lStatus(byte nLed, bool status) -{ - switch(nLed) - { - case 0x00: - led0x00 = status; - break; - - case 0x01: - led0x01 = status; - break; - - case 0x02: - led0x02 = status; - break; - - case 0x03: - led0x03 = status; - break; - - case 0x04: - led0x04 = status; - break; - - case 0x05: - led0x05 = status; - break; - - case 0x06: - led0x06 = status; - break; - - case 0x07: - led0x07 = status; - break; - - } -} - -//Activa a sMCU_OK -void sMCU_OK_W() -{ - lStatus(0x00,TRUE); -} - -//Desactiva a sMCU_OK -void sMCU_OK_NW() -{ - lStatus(0x00,FALSE); -} - -//Muestra titilando a sPC_OK -void sCom_In_W() -{ - lStatus(0x01,TRUE); -} - -//Muestra titilando a sPC_OK -void sCom_In_NW() -{ - lStatus(0x01,FALSE); -} - -//Muestra titilando a sPC_OK -void sPC_OK_W() -{ - lStatus(0x02,TRUE); -} - -//Muestra titilando a sPC_OK -void sPC_OK_NW() -{ - lStatus(0x02,FALSE); -} - -//paraliza el MCU por el tiempo time en ms -void delay(word time) -{ - //sPC_OK_W(); - Cpu_Delay100US(time*10); -} - - -//Inicializa los motores -void initMxSub(byte tipo){ - if(tipo == 1)//HK 30A - { - word spDC; - M1_ESC_Enable(); - M2_ESC_Enable(); - M3_ESC_Enable(); - M4_ESC_Enable(); - spDC = CENTERDC; //0xED71 = 7.24% = 60788 - M1_ESC_SetRatio16(spDC); - M2_ESC_SetRatio16(spDC); - M3_ESC_SetRatio16(spDC); - M4_ESC_SetRatio16(spDC); - delay(5000); - } - - if(tipo == 2)//Skywing - { - word spDC; - M1_ESC_Enable(); - M2_ESC_Enable(); - M3_ESC_Enable(); - M4_ESC_Enable(); - spDC = MAXFORWARD; - M1_ESC_SetRatio16(spDC); - M2_ESC_SetRatio16(spDC); - M3_ESC_SetRatio16(spDC); - M4_ESC_SetRatio16(spDC); - delay(5000); - } - - -} - -//Coloca un DC a todos los motores -void setDC(word Speed) -{ - (void)M1_ESC_SetRatio16(Speed); - (void)M2_ESC_SetRatio16(Speed); - (void)M3_ESC_SetRatio16(Speed); - (void)M4_ESC_SetRatio16(Speed); -} - -//Setea la velocidad de los motores de manera individual. Rango de 10 bits-> 0 - 1023 -void setMotorSpeed1024(word Speed,byte Motor){ - - Speed = map(Speed,0,1023,MAXFORWARD,MAXBACKWARD); - - switch(Motor){ - - case 1: - (void)M1_ESC_SetRatio16(CENTERDC); - (void)M1_ESC_SetRatio16(Speed); - case 2: - (void)M2_ESC_SetRatio16(CENTERDC); - (void)M2_ESC_SetRatio16(Speed); - case 3: - (void)M3_ESC_SetRatio16(CENTERDC); - (void)M3_ESC_SetRatio16(Speed); - case 4: - (void)M4_ESC_SetRatio16(CENTERDC); - (void)M4_ESC_SetRatio16(Speed); - } -} - -//Setea la velocidad de los motores de manera individual. Rango de 8 bits-> 0 - 255 -void setMotorSpeed256(byte Speed,byte Motor){ - - Speed = map(Speed,0,255,MAXFORWARD,MAXBACKWARD); - - switch(Motor){ - - case 1: - (void)M1_ESC_SetRatio8(CENTERDC); - (void)M1_ESC_SetRatio8(Speed); - case 2: - (void)M2_ESC_SetRatio8(CENTERDC); - (void)M2_ESC_SetRatio8(Speed); - case 3: - (void)M3_ESC_SetRatio8(CENTERDC); - (void)M3_ESC_SetRatio8(Speed); - case 4: - (void)M4_ESC_SetRatio8(CENTERDC); - (void)M4_ESC_SetRatio8(Speed); - } -} - -//Setea la velocidad de los motores de manera individual. Rango de 10 bits-> 0 - 1023 SKYWING -void setMotorSpeed1024SW(word Speed,byte Motor){ - - Speed = map(Speed,0,1023,MAXBACKWARD,CENTERDC); - - switch(Motor){ - - case 1: - - (void)M1_ESC_SetRatio16(Speed); - case 2: - - (void)M2_ESC_SetRatio16(Speed); - case 3: - - (void)M3_ESC_SetRatio16(Speed); - case 4: - - (void)M4_ESC_SetRatio16(Speed); - } -} -//SERVOS - - /*Pan*/ -void servoPanAngle(word Angle)//Resolucin de 0 - 255 -{ - Angle = map(Angle,0,255,MINSERVOUS,MAXSERVOUS); - S_PanCamera_SetDutyUS(Angle); -} - -void servoPan1024(word In)//Resolucin de 0 - 1023 (0 - 0x1023) -{ - In = map(In,0,1023,MINSERVOUS,MAXSERVOUS); - S_PanCamera_SetDutyUS(In); -} - - /*Tilt*/ -void servoTiltAngle(word Angle)//Resolucin de 0 - 255 -{ - Angle = map(Angle,0,255,MINSERVOUS,MAXSERVOUS); - S_TiltCamera_SetDutyUS(Angle); -} - -void servoTilt1024(word In)//Resolucin de 0 - 1023 (0 - 0x1023) -{ - In = map(In,0,1023,MINSERVOUS,MAXSERVOUS); - S_TiltCamera_SetDutyUS(In); -} - -/****LEDS****/ - void setLEDPWM(word PWM){ - LedLight1_SetRatio16(PWM); - LedLight2_SetRatio16(PWM); - } - - void setLED1PWM(word PWM){ - LedLight1_SetRatio16(PWM); - } - - void setLED2PWM(word PWM){ - LedLight2_SetRatio16(PWM); - } - - -//MAPEA -long map(long x, long in_min,long in_max,long out_min, long out_max){ - return (x-in_min)*(out_max-out_min)/(in_max-in_min)+out_min; -} - - -/*I2C*/ - -byte writeRegisterI2C(byte reg, byte data)//manera sencilla de editar un registro -{ - byte DATA[2]; - word Sent; - byte err; - DATA[0] = reg; // registro a editar - DATA[1] = data; // data a enviar - err = I2C_SendBlock(DATA,2,&Sent); - return err; -} - -void initMPU()//Inicializa la IMU -{ - byte err; - byte reg = 0x6B; // PWR_MGMT_1 register - byte data = 0x00; // set to zero (wakes up the MPU-6050) - (void)I2C_SelectSlave(MPU); - while(writeRegisterI2C(reg,data) != ERR_OK); - delay(10); - while(writeRegisterI2C(MPU6050_ACCEL_CONFIG,MPU6050_AFS_SEL_4G) != ERR_OK);//+-4G - while(writeRegisterI2C(MPU6050_GYRO_CONFIG,MPU6050_FS_SEL_1000) != ERR_OK);//+-1000/s -} - - -//Obtener data de la IMU. data debe ser de tamao 14 -void dataMPUtoArray(byte dataIn[]) -{ - word Sent; - (void)I2C_SelectSlave(MPU); - while(I2C_SendChar(0x3B) != ERR_OK); - while(I2C_RecvBlock(dataIn,14,&Sent) != ERR_OK); - - aceleracionX.HIGH.data = dataIn[0]; - aceleracionX.LOW.data = dataIn[1]; - aceleracionY.HIGH.data = dataIn[2]; - aceleracionY.LOW.data = dataIn[3]; - aceleracionZ.HIGH.data = dataIn[4]; - aceleracionZ.LOW.data = dataIn[5]; - tempInterna.HIGH.data = dataIn[6]; - tempInterna.LOW.data = dataIn[7]; - velAngularX.HIGH.data = dataIn[8]; - velAngularX.LOW.data = dataIn[9]; - velAngularY.HIGH.data = dataIn[10]; - velAngularY.LOW.data = dataIn[11]; - velAngularZ.HIGH.data = dataIn[12]; - velAngularZ.LOW.data = dataIn[13]; - /* - * - AcXH = Wire.read(); - AcXL = Wire.read(); - - AcYH = Wire.read(); - AcYL = Wire.read(); - - AcZH = Wire.read(); - AcZL = Wire.read(); - - // 0x41 (TEMP_OUT_H) & 0x42 (TEMP_OUT_L) - TmpH = Wire.read(); - TmpL = Wire.read(); - - - GyXH = Wire.read(); - GyXL = Wire.read(); - GyYH = Wire.read(); - GyYL = Wire.read(); - GyZH = Wire.read(); - GyZL = Wire.read(); - */ -} - - - -//Obtener data de la IMU. data debe ser de tamao 14 -void dataMPU() -{ - byte dataIn[14]; - word Sent; - (void)I2C_SelectSlave(MPU); - while(I2C_SendChar(0x3B) != ERR_OK); - while(I2C_RecvBlock(dataIn,14,&Sent) != ERR_OK); - - aceleracionX.HIGH.data = dataIn[0]; - aceleracionX.LOW.data = dataIn[1]; - aceleracionY.HIGH.data = dataIn[2]; - aceleracionY.LOW.data = dataIn[3]; - aceleracionZ.HIGH.data = dataIn[4]; - aceleracionZ.LOW.data = dataIn[5]; - tempInterna.HIGH.data = dataIn[6]; - tempInterna.LOW.data = dataIn[7]; - velAngularX.HIGH.data = dataIn[8]; - velAngularX.LOW.data = dataIn[9]; - velAngularY.HIGH.data = dataIn[10]; - velAngularY.LOW.data = dataIn[11]; - velAngularZ.HIGH.data = dataIn[12]; - velAngularZ.LOW.data = dataIn[13]; - - -} - -void initHMC6352()//Inicializa la IMU -{ - byte err; - byte reg = 0x6B; // PWR_MGMT_1 register - byte data = 0x00; // set to zero (wakes up the MPU-6050) - (void)I2C_SelectSlave(HMC6352); - - -} - -//Obtener data del magnetometro. data debe ser de tamao 2 -void dataHMC6352toArray(byte dataIn[]) -{ - word Sent; - (void)I2C_SelectSlave(HMC6352); - while(I2C_SendChar('A') != ERR_OK){}; - while(I2C_RecvBlock(dataIn,2,&Sent) != ERR_OK); - - angBrujula.HIGH.data = dataIn[0]; - angBrujula.LOW.data = dataIn[1]; - -} - -//Obtener data del magnetometro. data debe ser de tamao 2 -void dataHMC6352() -{ - byte dataIn[2]; - word Sent; - (void)I2C_SelectSlave(HMC6352); - while(I2C_SendChar('A') != ERR_OK){}; - while(I2C_RecvBlock(dataIn,2,&Sent) != ERR_OK); - - angBrujula.HIGH.data = dataIn[0]; - angBrujula.HIGH.data = dataIn[1]; -} - -//Envio de data a PC -void dataTrans(byte dataOut[], byte tam) -{ - byte i = 0; - for(i = 0;i> 2; //Corrimiento - (void)ADC_GetChanValue8(6,&cargaBaterias.data); //Voltaje Bateras - cargaBaterias.data = cargaBaterias.data >> 2; - //Bit I/O - presenciaAgua.data = PresenciaAgua1_GetVal() + PresenciaAgua2_GetVal(); - - -} - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/604804795bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/604804795bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/604804795bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/905fbdc36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/905fbdc36fc40015180fe241a6b5bfe5 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/90e11e7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/90e11e7e7cc400151f08d780d899b0c2 deleted file mode 100644 index 6002ee7..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/90e11e7e7cc400151f08d780d899b0c2 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/c0ccaa4037c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/c0ccaa4037c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/c0ccaa4037c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/d064ad4037c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/d064ad4037c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/d064ad4037c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/e0fcaf4037c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/e0fcaf4037c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1c/e0fcaf4037c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/4007a4cf3ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/4007a4cf3ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/4007a4cf3ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/50bda8d735c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/50bda8d735c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/50bda8d735c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/7026b3c13ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/7026b3c13ac8001513b8f2fec7d3ea00 deleted file mode 100644 index c83beda..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/7026b3c13ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,89 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Sources/Events.c" \ -"../Sources/OneWire.c" \ -"../Sources/main.c" \ -"../Sources/xSub.c" \ - -C_SRCS += \ -../Sources/Events.c \ -../Sources/OneWire.c \ -../Sources/main.c \ -../Sources/xSub.c \ - -OBJS += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -OBJS_QUOTED += \ -"./Sources/Events_c.obj" \ -"./Sources/OneWire_c.obj" \ -"./Sources/main_c.obj" \ -"./Sources/xSub_c.obj" \ - -C_DEPS += \ -./Sources/Events_c.d \ -./Sources/OneWire_c.d \ -./Sources/main_c.d \ -./Sources/xSub_c.d \ - -OBJS_OS_FORMAT += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -C_DEPS_QUOTED += \ -"./Sources/Events_c.d" \ -"./Sources/OneWire_c.d" \ -"./Sources/main_c.d" \ -"./Sources/xSub_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Sources/Events_c.obj: ../Sources/Events.c - @echo 'Building file: $<' - @echo 'Executing target #1 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/Events.args" -o "Sources/Events_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/%.d: ../Sources/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Sources/OneWire_c.obj: ../Sources/OneWire.c - @echo 'Building file: $<' - @echo 'Executing target #2 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/OneWire.args" -o "Sources/OneWire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/main_c.obj: ../Sources/main.c - @echo 'Building file: $<' - @echo 'Executing target #3 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/main.args" -o "Sources/main_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/xSub_c.obj: ../Sources/xSub.c - @echo 'Building file: $<' - @echo 'Executing target #4 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/xSub.args" -o "Sources/xSub_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/7032b63b42c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/7032b63b42c4001515648e1660054a1a deleted file mode 100644 index 2a52ba0..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/7032b63b42c4001515648e1660054a1a +++ /dev/null @@ -1,31 +0,0 @@ -================================================================= -THIS FILE WAS GENERATED BY "Processor Expert version 10.3 for Freescale Microcontrollers". -Project "X-Sub MCU Firmware", 2016-01-26, 10:28, # CodeGen: 87 -DO NOT MODIFY IT. -================================================================= - -================================================================= - SIGNAL LIST ------------------------------------------------------------------ -SIGNAL-NAME [DIR] => PIN-NAME [PIN-NUMBER] ------------------------------------------------------------------ -AD1 => PTF1_ADP11 [52] -AD2 => PTF2_ADP12 [46] -AD3 => PTF3_ADP13 [45] -AD4 => PTF4_ADP14 [38] -Press_In => PTF0_ADP10 [53] -================================================================= - - -================================================================= - PIN LIST ------------------------------------------------------------------ -PIN-NAME [PIN-NUM] => SIGNAL-NAME [DIRECTION] ------------------------------------------------------------------ -PTF0_ADP10 [53] => Press_In -PTF1_ADP11 [52] => AD1 -PTF2_ADP12 [46] => AD2 -PTF3_ADP13 [45] => AD3 -PTF4_ADP14 [38] => AD4 -================================================================= - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/70c2801bd4c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/70c2801bd4c5001515acf159be79a4ca deleted file mode 100644 index 17c561c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/70c2801bd4c5001515acf159be79a4ca +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################ -# These macros are used by makefiles and argument files. -# When a space is included in the path and quotes (") cannot be used, -# a _ESCAPE version of the macro is added that escapes the space with backslash (\). -################################################################################ - -export HC08ToolsEnv=$(CWInstallLocationEnv)/MCU/prog -export GNU_Make_Install_DirEnv=$(CWInstallLocationEnv)/gnu/bin -export ProjDirPath=C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU Firmware/X-Sub MCU Firmware -export CWInstallLocationEnv=C:/Freescale/CW MCU v10.6 -export MCUToolsBaseDirEnv=$(CWInstallLocationEnv)/MCU -export CF_ToolsDirEnv=$(CWInstallLocationEnv)/MCU/ColdFire_Tools/Command_Line_Tools diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/807f011238c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/807f011238c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/807f011238c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b07610cb5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b07610cb5bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b07610cb5bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/c15b4dcf3ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/c15b4dcf3ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/c15b4dcf3ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d0e381a983c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d0e381a983c4001518258e1c1f15aebe deleted file mode 100644 index c83beda..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/d0e381a983c4001518258e1c1f15aebe +++ /dev/null @@ -1,89 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Sources/Events.c" \ -"../Sources/OneWire.c" \ -"../Sources/main.c" \ -"../Sources/xSub.c" \ - -C_SRCS += \ -../Sources/Events.c \ -../Sources/OneWire.c \ -../Sources/main.c \ -../Sources/xSub.c \ - -OBJS += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -OBJS_QUOTED += \ -"./Sources/Events_c.obj" \ -"./Sources/OneWire_c.obj" \ -"./Sources/main_c.obj" \ -"./Sources/xSub_c.obj" \ - -C_DEPS += \ -./Sources/Events_c.d \ -./Sources/OneWire_c.d \ -./Sources/main_c.d \ -./Sources/xSub_c.d \ - -OBJS_OS_FORMAT += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -C_DEPS_QUOTED += \ -"./Sources/Events_c.d" \ -"./Sources/OneWire_c.d" \ -"./Sources/main_c.d" \ -"./Sources/xSub_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Sources/Events_c.obj: ../Sources/Events.c - @echo 'Building file: $<' - @echo 'Executing target #1 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/Events.args" -o "Sources/Events_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/%.d: ../Sources/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Sources/OneWire_c.obj: ../Sources/OneWire.c - @echo 'Building file: $<' - @echo 'Executing target #2 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/OneWire.args" -o "Sources/OneWire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/main_c.obj: ../Sources/main.c - @echo 'Building file: $<' - @echo 'Executing target #3 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/main.args" -o "Sources/main_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/xSub_c.obj: ../Sources/xSub.c - @echo 'Building file: $<' - @echo 'Executing target #4 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/xSub.args" -o "Sources/xSub_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/f018161238c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/f018161238c8001513b8f2fec7d3ea00 deleted file mode 100644 index 17c561c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1d/f018161238c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################ -# These macros are used by makefiles and argument files. -# When a space is included in the path and quotes (") cannot be used, -# a _ESCAPE version of the macro is added that escapes the space with backslash (\). -################################################################################ - -export HC08ToolsEnv=$(CWInstallLocationEnv)/MCU/prog -export GNU_Make_Install_DirEnv=$(CWInstallLocationEnv)/gnu/bin -export ProjDirPath=C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU Firmware/X-Sub MCU Firmware -export CWInstallLocationEnv=C:/Freescale/CW MCU v10.6 -export MCUToolsBaseDirEnv=$(CWInstallLocationEnv)/MCU -export CF_ToolsDirEnv=$(CWInstallLocationEnv)/MCU/ColdFire_Tools/Command_Line_Tools diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1e/0057ef846fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1e/0057ef846fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1e/0057ef846fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1e/20c23dc943c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1e/20c23dc943c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1e/20c23dc943c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1e/80beb5c13ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1e/80beb5c13ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1e/80beb5c13ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/003f3d7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/003f3d7e7cc400151f08d780d899b0c2 deleted file mode 100644 index 7175964..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/003f3d7e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,20 +0,0 @@ -Generated_Code/sCom_In_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sCom_In.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sCom_In.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/109aacd23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/109aacd23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/109aacd23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/109acf1138c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/109acf1138c8001513b8f2fec7d3ea00 deleted file mode 100644 index 7a10f5b..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/109acf1138c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Init.c" \ - -C_SRCS += \ -../Init.c \ - -OBJS += \ -./Init_c.obj \ - -OBJS_QUOTED += \ -"./Init_c.obj" \ - -C_DEPS += \ -./Init_c.d \ - -OBJS_OS_FORMAT += \ -./Init_c.obj \ - -C_DEPS_QUOTED += \ -"./Init_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Init_c.obj: ../Init.c - @echo 'Building file: $<' - @echo 'Executing target #6 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Init.args" -o "./Init_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Init_c.d: ../Init.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/20c3915035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/20c3915035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/20c3915035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/500f8ccb5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/500f8ccb5bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/500f8ccb5bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b07f9bc36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b07f9bc36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 5d02835..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b07f9bc36fc40015180fe241a6b5bfe5 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0e201c23ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0e201c23ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0e201c23ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c0341e7d3dc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c0341e7d3dc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c0341e7d3dc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c063405f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c063405f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/1f/c063405f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/40e937085ec400151c37d9c83b392de4 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/40e937085ec400151c37d9c83b392de4 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/40e937085ec400151c37d9c83b392de4 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/506c567e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/506c567e7cc400151f08d780d899b0c2 deleted file mode 100644 index a9758f7..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/506c567e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,268 +0,0 @@ - - - -# .abs__InterruptVectorTable - 00000000 0000019C .abs InterruptVectorTable (Vectors_c.obj) - -# .abs_NVPROT_INIT - 0000040D 00000001 .abs NVPROT_INIT (Cpu_c.obj) - -# .abs_NVOPT_INIT - 0000040F 00000001 .abs NVOPT_INIT (Cpu_c.obj) -#>00000400 ___heap_size (linker command file) -#>00000400 ___stack_size (linker command file) -#>00800000 ___RAM_ADDRESS (linker command file) -#>00002000 ___RAM_SIZE (linker command file) -#>00000000 ___FLASH_ADDRESS (linker command file) -#>00020000 ___FLASH_SIZE (linker command file) - -# .userram - -# .code - -# .text - 00000410 000000D4 .text SerialCom_RecvChar (SerialCom_c.obj) - 000004E4 00000092 .text SerialCom_RecvBlock (SerialCom_c.obj) - 00000576 00000138 .text SerialCom_SendBlock (SerialCom_c.obj) - 000006AE 0000006A .text SerialCom_ClearRxBuf (SerialCom_c.obj) - 00000718 000000B4 .text SerialCom_InterruptRx (SerialCom_c.obj) - 000007CC 000000BE .text SerialCom_InterruptTx (SerialCom_c.obj) - 0000088A 00000020 .text SerialCom_InterruptError (SerialCom_c.obj) - 000008AA 00000074 .text SerialCom_Init (SerialCom_c.obj) - 0000091E 0000008C .text S_Wire_InterruptRx (S_Wire_c.obj) - 000009AA 00000052 .text S_Wire_InterruptTx (S_Wire_c.obj) - 000009FC 00000030 .text S_Wire_InterruptError (S_Wire_c.obj) - 00000A2C 00000054 .text S_Wire_Init (S_Wire_c.obj) - 00000A80 00000030 .text SetRatio (S_TiltCamera_c.obj) - 00000AB0 0000004E .text S_TiltCamera_SetDutyUS (S_TiltCamera_c.obj) - 00000AFE 00000012 .text S_TiltCamera_Init (S_TiltCamera_c.obj) - 00000B10 00000030 .text SetRatio (S_PanCamera_c.obj) - 00000B40 0000004E .text S_PanCamera_SetDutyUS (S_PanCamera_c.obj) - 00000B8E 00000012 .text S_PanCamera_Init (S_PanCamera_c.obj) - 00000BA0 00000022 .text RESET_INTERRUPT_Interrupt (RESET_INTERRUPT_c.obj) - 00000BC2 000000F4 .text PE_Timer_LngMul (PE_Timer_c.obj) - 00000CB6 00000086 .text PE_Timer_LngHi3 (PE_Timer_c.obj) - 00000D3C 00000030 .text SetRatio (M4_ESC_c.obj) - 00000D6C 0000000A .text M4_ESC_Enable (M4_ESC_c.obj) - 00000D76 0000001C .text M4_ESC_SetRatio8 (M4_ESC_c.obj) - 00000D92 00000014 .text M4_ESC_SetRatio16 (M4_ESC_c.obj) - 00000DA6 00000020 .text M4_ESC_Init (M4_ESC_c.obj) - 00000DC6 00000030 .text SetRatio (M3_ESC_c.obj) - 00000DF6 0000000A .text M3_ESC_Enable (M3_ESC_c.obj) - 00000E00 0000001C .text M3_ESC_SetRatio8 (M3_ESC_c.obj) - 00000E1C 00000014 .text M3_ESC_SetRatio16 (M3_ESC_c.obj) - 00000E30 00000012 .text M3_ESC_Init (M3_ESC_c.obj) - 00000E42 00000030 .text SetRatio (M2_ESC_c.obj) - 00000E72 0000000A .text M2_ESC_Enable (M2_ESC_c.obj) - 00000E7C 0000001C .text M2_ESC_SetRatio8 (M2_ESC_c.obj) - 00000E98 00000014 .text M2_ESC_SetRatio16 (M2_ESC_c.obj) - 00000EAC 00000012 .text M2_ESC_Init (M2_ESC_c.obj) - 00000EBE 00000030 .text SetRatio (M1_ESC_c.obj) - 00000EEE 0000000A .text M1_ESC_Enable (M1_ESC_c.obj) - 00000EF8 0000001C .text M1_ESC_SetRatio8 (M1_ESC_c.obj) - 00000F14 00000014 .text M1_ESC_SetRatio16 (M1_ESC_c.obj) - 00000F28 00000020 .text M1_ESC_Init (M1_ESC_c.obj) - 00000F48 00000030 .text SetRatio (LedLight2_c.obj) - 00000F78 0000001C .text LedLight2_SetRatio8 (LedLight2_c.obj) - 00000F94 00000012 .text LedLight2_Init (LedLight2_c.obj) - 00000FA6 00000030 .text SetRatio (LedLight1_c.obj) - 00000FD6 0000001C .text LedLight1_SetRatio8 (LedLight1_c.obj) - 00000FF2 00000020 .text LedLight1_Init (LedLight1_c.obj) - 00001012 00000260 .text MainComm (I2C_c.obj) - 00001272 00000048 .text I2C_SendChar (I2C_c.obj) - 000012BA 000000AC .text I2C_SendBlock (I2C_c.obj) - 00001366 000000AE .text I2C_RecvBlock (I2C_c.obj) - 00001414 00000028 .text I2C_SelectSlave (I2C_c.obj) - 0000143C 00000026 .text I2C_Init (I2C_c.obj) - 00001462 00000002 .text Cpu_Interrupt (Cpu_c.obj) - 00001464 0000001C .text Cpu_Delay100US (Cpu_c.obj) - 00001480 00000088 .text __initialize_hardware (Cpu_c.obj) - 00001508 00000214 .text PE_low_level_init (Cpu_c.obj) - 0000171C 0000001C .text HWEnDi (Aux_Int_c.obj) - 00001738 00000020 .text Aux_Int_Init (Aux_Int_c.obj) - 00001758 00000022 .text Aux_Int_Interrupt (Aux_Int_c.obj) - 0000177A 000000BA .text ADC_Interrupt (ADC_c.obj) - 00001834 00000026 .text ClrSumV (ADC_c.obj) - 0000185A 0000005C .text ADC_HWEnDi (ADC_c.obj) - 000018B6 0000002A .text ADC_Measure (ADC_c.obj) - 000018E0 00000042 .text ADC_GetChanValue8 (ADC_c.obj) - 00001922 00000042 .text ADC_GetChanValue16 (ADC_c.obj) - 00001964 00000020 .text ADC_Init (ADC_c.obj) - 00001984 00000002 .text __initialize_system (startcf_c.obj) - 00001986 00000062 .text __copy_rom_section (startcf_c.obj) - 000019E8 00000046 .text __copy_rom_sections_to_ram (startcf_c.obj) - 00001A2E 00000004 .text _ExitProcess (startcf_c.obj) - 00001A32 00000210 .text clear_mem (startcf_c.obj) - 00001C42 00000090 .text _startup (startcf_c.obj) - 00001CD2 00000008 .text sMCU_OK_W (xSub_c.obj) - 00001CDA 00000008 .text sMCU_OK_NW (xSub_c.obj) - 00001CE2 00000008 .text sPC_OK_W (xSub_c.obj) - 00001CEA 00000008 .text sPC_OK_NW (xSub_c.obj) - 00001CF2 00000094 .text initMxSub (xSub_c.obj) - 00001D86 00000098 .text setMotorSpeed256 (xSub_c.obj) - 00001E1E 0000003E .text servoPanAngle (xSub_c.obj) - 00001E5C 0000003E .text servoTiltAngle (xSub_c.obj) - 00001E9A 0000003E .text map (xSub_c.obj) - 00001ED8 0000003C .text writeRegisterI2C (xSub_c.obj) - 00001F14 0000005E .text initMPU (xSub_c.obj) - 00001F72 000000A6 .text dataMPU (xSub_c.obj) - 00002018 00000018 .text initHMC6352 (xSub_c.obj) - 00002030 00000042 .text dataHMC6352 (xSub_c.obj) - 00002072 00000018 .text envioData (xSub_c.obj) - 0000208A 000000A4 .text initVFisicas (xSub_c.obj) - 0000212E 000000DA .text vFisicas2Array (xSub_c.obj) - 00002208 000000C2 .text initxSub (xSub_c.obj) - 000022CA 00000052 .text getDataAll (xSub_c.obj) - 0000231C 00000052 .text main (main_c.obj) - 0000236E 00000074 .text Aux_Int_OnInterrupt (Events_c.obj) - 000023E2 00000002 .text SerialCom_OnRxChar (Events_c.obj) - 000023E4 00000002 .text SerialCom_OnTxChar (Events_c.obj) - 000023E6 00000002 .text RESET_INTERRUPT_OnInterrupt (Events_c.obj) - 000023E8 00000002 .text ADC_OnEnd (Events_c.obj) - 000023EA 00000074 .text SerialCom_OnFullRxBuf (Events_c.obj) - 0000245E 00000002 .text SerialCom_OnFreeTxBuf (Events_c.obj) - 00002460 00000002 .text S_Wire_OnError (Events_c.obj) - 00002462 00000002 .text S_Wire_OnRxChar (Events_c.obj) - 00002464 00000002 .text S_Wire_OnTxChar (Events_c.obj) - 00002466 0000000C .text _ewl_exit (librt.a abort_exit.o ) - 00002472 0000001C .text __call_static_initializers (librt.a cf_staticinitia) - 0000248E 0000002C .text __destroy_global_chain (librt.a cf_staticinitia) - 000024BA 0000003E .text __ldivu__ (librt.a cf_runtime.o ) - 000024F8 00000034 .text __ldiv__ (librt.a cf_runtime.o ) - 0000252C 00000006 .rodata Table (ADC_c.obj) - 00002532 00000006 .rodata Channels (ADC_c.obj) -#>00002538 ___ROM_AT (linker command file) -#>00002538 ___DATA_ROM (linker command file) - -# .data -#>00800000 ___DATA_RAM (linker command file) -#>00800000 __exception_table_start__ (linker command file) -# Exception index - 00800000 00000000 Exception Table Index () -#>00800000 __exception_table_end__ (linker command file) -#>00800000 ___sinit__ (linker command file) -# Linker generated symbols - 00800000 00000004 static initializer (linker generated) -#>00800004 __START_DATA (linker command file) -#>00800004 __END_DATA (linker command file) -#>00800004 __START_SDATA (linker command file) - 00800004 00000001 .sdata MPU6050_ACCEL_CONFIG (Init_c.obj) - 00800005 00000001 .sdata MPU6050_AFS_SEL_4G (Init_c.obj) - 00800006 00000001 .sdata MPU6050_GYRO_CONFIG (Init_c.obj) - 00800007 00000001 .sdata MPU6050_FS_SEL_1000 (Init_c.obj) - 00800008 00000001 .sdata MPU (Init_c.obj) - 00800009 00000001 .sdata HMC6352 (Init_c.obj) - 0080000A 00000002 .sdata CENTERDC (Init_c.obj) - 0080000C 00000002 .sdata MAXFORWARD (Init_c.obj) - 0080000E 00000002 .sdata MAXBACKWARD (Init_c.obj) - 00800010 00000002 .sdata MINSERVOUS (Init_c.obj) - 00800012 00000002 .sdata MAXSERVOUS (Init_c.obj) - 00800014 00000001 .sdata SIZEPACKAGE (Init_c.obj) -#>00800018 __END_SDATA (linker command file) -#>00800018 ___DATA_END (linker command file) -#>00800018 __SDA_BASE (linker command file) - -# .bss -#>00800018 ___BSS_START (linker command file) -#>00800018 __START_SBSS (linker command file) - 00800018 00000001 .sbss OnFreeTxBuf_semaphore (SerialCom_c.obj) - 00800019 0000001B .sbss OutBuffer (SerialCom_c.obj) - 00800034 00000001 .sbss OutIndxW (SerialCom_c.obj) - 00800035 00000001 .sbss OutIndxR (SerialCom_c.obj) - 00800036 00000001 .sbss SerialCom_OutLen (SerialCom_c.obj) - 00800037 0000000A .sbss InpBuffer (SerialCom_c.obj) - 00800041 00000001 .sbss InpIndxW (SerialCom_c.obj) - 00800042 00000001 .sbss InpIndxR (SerialCom_c.obj) - 00800043 00000001 .sbss SerialCom_InpLen (SerialCom_c.obj) - 00800044 00000001 .sbss EnUser (SerialCom_c.obj) - 00800045 00000001 .sbss SerFlag (SerialCom_c.obj) - 00800046 00000001 .sbss DivHighL (S_Wire_c.obj) - 00800047 00000001 .sbss DivHighH (S_Wire_c.obj) - 00800048 00000001 .sbss BufferRead (S_Wire_c.obj) - 00800049 00000001 .sbss SerFlag (S_Wire_c.obj) - 0080004A 00000002 .sbss ActualRatio (S_TiltCamera_c.obj) - 0080004C 00000002 .sbss ActualRatio (S_PanCamera_c.obj) - 0080004E 00000002 .sbss ActualRatio (M4_ESC_c.obj) - 00800050 00000002 .sbss ActualRatio (M3_ESC_c.obj) - 00800052 00000002 .sbss ActualRatio (M2_ESC_c.obj) - 00800054 00000002 .sbss ActualRatio (M1_ESC_c.obj) - 00800056 00000002 .sbss ActualRatio (LedLight2_c.obj) - 00800058 00000002 .sbss ActualRatio (LedLight1_c.obj) - 0080005A 00000001 .sbss I2C_SerFlag (I2C_c.obj) - 0080005B 00000001 .sbss ChrTemp (I2C_c.obj) - 0080005C 00000004 .sbss PtrSndRcv (I2C_c.obj) - 00800060 00000002 .sbss I2C_SndRcvTemp (I2C_c.obj) - 00800064 00000004 .sbss OutPtrM (I2C_c.obj) - 00800068 00000002 .sbss OutLenM (I2C_c.obj) - 0080006C 00000004 .sbss InpPtrM (I2C_c.obj) - 00800070 00000002 .sbss InpLenM (I2C_c.obj) - 00800072 00000001 .sbss I2C_SlaveAddr (I2C_c.obj) - 00800073 00000001 .sbss SR_lock (Cpu_c.obj) - 00800074 00000001 .sbss EnUser (Aux_Int_c.obj) - 00800076 0000000C .sbss ADC_OutV (ADC_c.obj) - 00800082 00000001 .sbss ModeFlg (ADC_c.obj) - 00800083 00000001 .sbss SumChan (ADC_c.obj) - 00800084 00000001 .sbss OutFlg (ADC_c.obj) - 00800085 00000002 .sbss finTrama (Init_c.obj) - 00800087 00000002 .sbss XOR (Init_c.obj) - 00800089 00000002 .sbss cargaBaterias (Init_c.obj) - 0080008B 00000002 .sbss presenciaAgua (Init_c.obj) - 0080008E 00000006 .sbss angBrujula (Init_c.obj) - 00800094 00000006 .sbss velLineal (Init_c.obj) - 0080009A 00000006 .sbss velAngularZ (Init_c.obj) - 008000A0 00000006 .sbss velAngularY (Init_c.obj) - 008000A6 00000006 .sbss velAngularX (Init_c.obj) - 008000AC 00000006 .sbss aceleracionZ (Init_c.obj) - 008000B2 00000006 .sbss aceleracionY (Init_c.obj) - 008000B8 00000006 .sbss aceleracionX (Init_c.obj) - 008000BE 00000006 .sbss presExterna (Init_c.obj) - 008000C4 00000006 .sbss tempInterna (Init_c.obj) - 008000CA 00000006 .sbss tempExterna (Init_c.obj) - 008000D0 00000002 .sbss STATUS (Init_c.obj) - 008000D2 00000002 .sbss err (Events_c.obj) - 008000D4 00000001 .sbss led0x00 (Events_c.obj) - 008000D5 00000001 .sbss led0x01 (Events_c.obj) - 008000D6 00000001 .sbss led0x02 (Events_c.obj) - 008000D7 00000001 .sbss tLed (Events_c.obj) - 008000D8 00000001 .sbss tMotor (Events_c.obj) - 008000D9 00000001 .sbss STATUS_PC (Events_c.obj) - 008000DA 0000000A .sbss dataInPC (Events_c.obj) - 008000E4 0000001B .sbss data (Events_c.obj) -#>00800100 __END_SBSS (linker command file) -#>00800100 __START_BSS (linker command file) - 00800100 00000002 .bss SR_reg (Cpu_c.obj) - 00800104 00000004 .bss __global_destructor_chain (librt.a cf_staticinitia) -#>00800108 __END_BSS (linker command file) -#>00800108 ___BSS_END (linker command file) - -# .custom -#>00800108 ___HEAP_START (linker command file) -#>00800108 ___heap_addr (linker command file) -#>00800508 ___HEAP_END (linker command file) -#>00800508 ___SP_END (linker command file) -#>00800908 ___SP_INIT (linker command file) -#>00800508 ___mem_limit (linker command file) -#>00000010 ___stack_safety (linker command file) -#>00800908 __SP_INIT (linker command file) -#>00800908 ___SP_AFTER_RESET (linker command file) -#>00002550 _romp_at (linker command file) - -# .romp -#>00002550 __S_romp (linker command file) - - -# Memory map: - v_addr p_addr size name - 00000000 00000000 0000019C .abs__InterruptVectorTable abs__InterruptVectorTable - 0000040D 0000040D 00000001 .abs_NVPROT_INIT abs_NVPROT_INIT - 0000040F 0000040F 00000001 .abs_NVOPT_INIT abs_NVOPT_INIT - 00000410 00000410 00000000 .code code - 00000410 00000410 00002128 .text code - 00800000 00800000 00000000 .userram userram - 00800000 00002538 00000018 .data userram - 00800018 00800018 000000F0 .bss userram - 00800108 00800108 00000000 .custom userram - 00800108 00002550 00000018 .romp userram - -# Link start time: Tue Jan 26 16:30:06 2016 -# Link end time: Tue Jan 26 16:30:06 2016 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/60e4a1cf3ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/60e4a1cf3ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/60e4a1cf3ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/909dc41138c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/909dc41138c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/909dc41138c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/90c782c36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/90c782c36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/90c782c36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/b004f1846fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/b004f1846fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2/b004f1846fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/20/609225b559c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/20/609225b559c4001515648e1660054a1a deleted file mode 100644 index 4981c88..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/20/609225b559c4001515648e1660054a1a +++ /dev/null @@ -1,3118 +0,0 @@ - - - - X-Sub MCU Firmware - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\X-Sub MCU Firmware\ - main - Sources\ - ..\Generated_Code\ - Documentation\ - - - MCF51QE128CLK - - false - false - - PE_Types - PE_Error - PE_Const - IO_Map - PE_Timer - - 1196053978 - -1 - -1 - 1196053978 - -1 - -1 - 1196053978 - -1 - -1 - 1196053978 - 1196053978 - -1 - 1196053978 - 1196053978 - -1 - - Project_Settings\Linker_Files\ProcessorExpert.lcf - Generated_Code\Vectors.c - - 1196525144 - 4 - 4 - - - Events - - - S_Wire_OnError - S_Wire_OnRxChar - S_Wire_OnTxChar - ADC_OnEnd - RESET_INTERRUPT_OnInterrupt - SerialCom_OnRxChar - SerialCom_OnTxChar - SerialCom_OnFullRxBuf - SerialCom_OnFreeTxBuf - Aux_Int_OnInterrupt - - - ADC - Aux_Int - Cpu - CS1 - Events - I2C - IO_Map - LedLight1 - LedLight2 - M1_ESC - M2_ESC - M3_ESC - M4_ESC - PE_Const - PE_Error - PE_Timer - PE_Types - PresenciaAgua1 - PresenciaAgua2 - RESET_INTERRUPT - S_PanCamera - S_TiltCamera - S_Wire - sCom_In - SerialCom - sMCU_OK - sPC_OK - - - - M1_ESC - M2_ESC - M3_ESC - M4_ESC - S_PanCamera - S_TiltCamera - sMCU_OK - sCom_In - sPC_OK - Aux_Int - SerialCom - RESET_INTERRUPT - ADC - LedLight1 - LedLight2 - CS1 - I2C - PresenciaAgua2 - PresenciaAgua1 - S_Wire - - - Documentation\X-Sub MCU Firmware_SIGNALS.txt - CodeWarriorColdFireV1 - 77 - - - true - Cpu - 01.014 - 01.12 - Events - 1196053978 - 1211788931 - -1 - 19 - false - false - false - false - true - true - false - false - false - false - false - false - false - false - false - false - false - false - true - 8 - 0 - Cpu_OnAddrRelatedEXP - interrupts disabled - 0 - Cpu_OnInstrRelatedEXP - interrupts disabled - 0 - Cpu_OnTrapEXP - interrupts disabled - 1 - Cpu_OnUnsupportedInstEXP - interrupts disabled - 0 - Cpu_OnSwINT - interrupts disabled - 1 - Cpu_OnReset - interrupts disabled - 0 - Cpu_OnLvdINT - interrupts disabled - 1 - Cpu_OnLvwINT - interrupts disabled - isr_default - _startup - false - false - false - 2 - Project_Settings\Linker_Files\ProcessorExpert.lcf - Generated_Code\Vectors.c - - - true - M1_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M1_ESC_BeforeNewSpeed - interrupts disabled - 0 - M1_ESC_AfterNewSpeed - interrupts disabled - 0 - M1_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 338 - - 0 - - - true - M2_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M2_ESC_BeforeNewSpeed - interrupts disabled - 0 - M2_ESC_AfterNewSpeed - interrupts disabled - 0 - M2_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - M3_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M3_ESC_BeforeNewSpeed - interrupts disabled - 0 - M3_ESC_AfterNewSpeed - interrupts disabled - 0 - M3_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - M4_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M4_ESC_BeforeNewSpeed - interrupts disabled - 0 - M4_ESC_AfterNewSpeed - interrupts disabled - 0 - M4_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 338 - - 0 - - - true - S_PanCamera - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - S_PanCamera_BeforeNewSpeed - interrupts disabled - 0 - S_PanCamera_AfterNewSpeed - interrupts disabled - 0 - S_PanCamera_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - S_TiltCamera - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - S_TiltCamera_BeforeNewSpeed - interrupts disabled - 0 - S_TiltCamera_AfterNewSpeed - interrupts disabled - 0 - S_TiltCamera_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - sMCU_OK - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - true - true - true - true - false - 0 - false - false - false - 10 - - GetVal - method - Header - 103 - 123 - - - PutVal - method - Header - 124 - 138 - - - ClrVal - method - Header - 139 - 151 - - - SetVal - method - Header - 152 - 164 - - - NegVal - method - Header - 165 - 177 - - - GetVal - method - Code - 101 - 123 - - - PutVal - method - Code - 124 - 145 - - - ClrVal - method - Code - 146 - 160 - - - SetVal - method - Code - 161 - 175 - - - NegVal - method - Code - 176 - 190 - - 0 - - - true - sCom_In - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - true - true - true - true - false - 0 - false - false - false - 10 - - GetVal - method - Header - 103 - 123 - - - PutVal - method - Header - 124 - 138 - - - ClrVal - method - Header - 139 - 151 - - - SetVal - method - Header - 152 - 164 - - - NegVal - method - Header - 165 - 177 - - - GetVal - method - Code - 101 - 123 - - - PutVal - method - Code - 124 - 145 - - - ClrVal - method - Code - 146 - 160 - - - SetVal - method - Code - 161 - 175 - - - NegVal - method - Code - 176 - 190 - - 0 - - - true - sPC_OK - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - true - true - true - true - false - 0 - false - false - false - 10 - - GetVal - method - Header - 103 - 123 - - - PutVal - method - Header - 124 - 138 - - - ClrVal - method - Header - 139 - 151 - - - SetVal - method - Header - 152 - 164 - - - NegVal - method - Header - 165 - 177 - - - GetVal - method - Code - 101 - 123 - - - PutVal - method - Code - 124 - 145 - - - ClrVal - method - Code - 146 - 160 - - - SetVal - method - Code - 161 - 175 - - - NegVal - method - Code - 176 - 190 - - 0 - - - true - Aux_Int - 02.161 - 01.23 - Events - 1196142058 - 1196142058 - -1 - 14 - true - true - false - false - false - false - false - false - false - false - false - false - false - false - 3 - 0 - Aux_Int_BeforeNewSpeed - interrupts disabled - 0 - Aux_Int_AfterNewSpeed - interrupts disabled - 2 - Aux_Int_OnInterrupt - same as interrupt - false - false - false - 10 - - Enable - method - Header - 110 - 126 - - - Disable - method - Header - 127 - 142 - - - Interrupt - internal_method - Header - 143 - 154 - - - Init - internal_method - Header - 155 - 167 - - - HWEnDi - internal_method_declaration - Code - 107 - 119 - - - HWEnDi - internal_method - Code - 123 - 144 - - - Enable - method - Code - 145 - 167 - - - Disable - method - Code - 168 - 190 - - - Init - internal_method - Code - 191 - 211 - - - Interrupt - internal_method - Code - 212 - 230 - - 0 - - - true - SerialCom - 02.611 - 01.33 - Events - 1211782027 - 1211782027 - -1 - 30 - true - true - false - false - true - true - true - true - true - true - false - true - false - true - false - false - false - false - false - false - false - false - false - false - false - false - false - false - false - false - 12 - 0 - SerialCom_BeforeNewSpeed - interrupts disabled - 0 - SerialCom_AfterNewSpeed - interrupts disabled - 1 - SerialCom_OnError - same as interrupt - 3 - SerialCom_OnRxChar - same as interrupt - 1 - SerialCom_OnRxCharExt - same as interrupt - 3 - SerialCom_OnTxChar - same as interrupt - 3 - SerialCom_OnFullRxBuf - same as interrupt - 3 - SerialCom_OnFreeTxBuf - same as interrupt - 0 - SerialCom_OnBreak - same as interrupt - 1 - SerialCom_OnIdle - same as interrupt - 1 - SerialCom_OnTxComplete - same as interrupt - 0 - SerialCom_OnRxActiveEdge - same as interrupt - false - false - false - 29 - - Enable - method - Header - 155 - 171 - - - Disable - method - Header - 172 - 187 - - - RecvChar - method - Header - 188 - 221 - - - SendChar - method - Header - 222 - 245 - - - RecvBlock - method - Header - 246 - 279 - - - SendBlock - method - Header - 280 - 304 - - - ClearRxBuf - method - Header - 305 - 321 - - - ClearTxBuf - method - Header - 322 - 339 - - - GetCharsInRxBuf - method - Header - 340 - 354 - - - GetCharsInTxBuf - method - Header - 355 - 370 - - - InterruptRx - internal_method - Header - 371 - 382 - - - InterruptTx - internal_method - Header - 383 - 394 - - - InterruptError - internal_method - Header - 395 - 406 - - - InterruptCs - internal_method - Header - 407 - 407 - - - Init - internal_method - Header - 408 - 420 - - - Enable - method - Code - 147 - 177 - - - Disable - method - Code - 178 - 204 - - - RecvChar - method - Code - 205 - 256 - - - SendChar - method - Code - 257 - 298 - - - RecvBlock - method - Code - 299 - 354 - - - SendBlock - method - Code - 355 - 410 - - - ClearRxBuf - method - Code - 411 - 436 - - - ClearTxBuf - method - Code - 437 - 462 - - - GetCharsInRxBuf - method - Code - 463 - 480 - - - GetCharsInTxBuf - method - Code - 481 - 499 - - - InterruptRx - internal_method - Code - 500 - 541 - - - InterruptTx - internal_method - Code - 542 - 583 - - - InterruptError - internal_method - Code - 584 - 601 - - - Init - internal_method - Code - 602 - 638 - - 0 - - - true - RESET_INTERRUPT - 02.105 - 01.24 - Events - 1196053978 - 1196053978 - -1 - 4 - false - false - true - false - 1 - 2 - RESET_INTERRUPT_OnInterrupt - same as interrupt - false - false - false - 4 - - Interrupt - internal_method - Header - 105 - 116 - - - GetVal - method - Header - 117 - 131 - - - Interrupt - internal_method - Code - 96 - 111 - - - GetVal - method - Code - 112 - 129 - - 0 - - - true - ADC - 01.697 - 01.30 - Events - 1211788931 - 1211788931 - -1 - 19 - false - false - false - false - false - false - true - true - false - true - true - true - false - true - true - false - false - false - false - 3 - 0 - ADC_BeforeNewSpeed - interrupts disabled - 0 - ADC_AfterNewSpeed - interrupts disabled - 3 - ADC_OnEnd - same as interrupt - false - false - false - 22 - - Interrupt - internal_method - Header - 130 - 141 - - - HWEnDi - internal_method - Header - 142 - 154 - - - Measure - method - Header - 156 - 190 - - - MeasureChan - method - Header - 191 - 223 - - - GetValue - method - Header - 224 - 255 - - - GetChanValue - method - Header - 256 - 293 - - - GetValue8 - method - Header - 294 - 323 - - - GetValue16 - method - Header - 324 - 353 - - - GetChanValue16 - method - Header - 354 - 389 - - - Init - internal_method - Header - 390 - 402 - - - ClrSumV - internal_method_declaration - Code - 115 - 125 - - - Interrupt - internal_method - Code - 145 - 184 - - - ClrSumV - internal_method - Code - 185 - 204 - - - HWEnDi - internal_method - Code - 205 - 233 - - - Measure - method - Code - 234 - 279 - - - MeasureChan - method - Code - 280 - 327 - - - GetValue - method - Code - 328 - 371 - - - GetChanValue - method - Code - 372 - 419 - - - GetValue8 - method - Code - 420 - 461 - - - GetValue16 - method - Code - 462 - 503 - - - GetChanValue16 - method - Code - 504 - 549 - - - Init - internal_method - Code - 550 - 572 - - 0 - - - true - LedLight1 - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - LedLight1_BeforeNewSpeed - interrupts disabled - 0 - LedLight1_AfterNewSpeed - interrupts disabled - 0 - LedLight1_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 338 - - 0 - - - true - LedLight2 - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - LedLight2_BeforeNewSpeed - interrupts disabled - 0 - LedLight2_AfterNewSpeed - interrupts disabled - 0 - LedLight2_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - false - - ??.??? - ??.?? - - -1 - -1 - -1 - 1 - false - 2 - 1 - WDog1_BeforeNewSpeed - interrupts disabled - 1 - WDog1_AfterNewSpeed - interrupts disabled - false - false - false - 0 - 0 - - - true - CS1 - 01.006 - 01.00 - - 1196053978 - 1196053978 - -1 - 3 - true - true - true - 0 - false - false - false - 6 - - CriticalVariable - method - Header - 62 - 74 - - - EnterCritical - method - Header - 75 - 87 - - - ExitCritical - method - Header - 88 - 100 - - - CriticalVariable - method - Code - 42 - 57 - - - EnterCritical - method - Code - 58 - 73 - - - ExitCritical - method - Code - 74 - 89 - - 0 - - - true - I2C - 01.287 - 01.28 - Events - 1211198139 - 1211198139 - -1 - 21 - false - false - false - false - true - true - true - true - false - false - false - false - false - true - false - false - false - false - false - false - false - 16 - 0 - I2C_BeforeNewSpeed - interrupts disabled - 0 - I2C_AfterNewSpeed - interrupts disabled - 0 - I2C_OnReceiveData - same as interrupt - 0 - I2C_OnTransmitData - same as interrupt - 1 - I2C_OnByteTransfer - same as interrupt - 0 - I2C_OnReadReq - same as interrupt - 0 - I2C_OnWriteReq - same as interrupt - 0 - I2C_OnRxChar - same as interrupt - 0 - I2C_OnTxChar - same as interrupt - 0 - I2C_OnFreeTxBuf - same as interrupt - 0 - I2C_OnFullRxBuf - same as interrupt - 0 - I2C_OnArbitLost - same as interrupt - 0 - I2C_OnNACK - same as interrupt - 0 - I2C_OnError - same as interrupt - 0 - I2C_OnTxEmptyChar - same as interrupt - 0 - I2C_OnGeneralCall - same as interrupt - false - false - false - 14 - - SendChar - method - Header - 142 - 186 - - - RecvChar - method - Header - 187 - 235 - - - SendBlock - method - Header - 236 - 292 - - - RecvBlock - method - Header - 293 - 349 - - - SelectSlave - method - Header - 350 - 373 - - - Init - internal_method - Header - 374 - 386 - - - MainComm - internal_method - Code - 160 - 170 - - - MainComm - internal_method - Code - 171 - 267 - - - SendChar - method - Code - 269 - 320 - - - RecvChar - method - Code - 321 - 373 - - - SendBlock - method - Code - 374 - 451 - - - RecvBlock - method - Code - 452 - 529 - - - SelectSlave - method - Code - 530 - 560 - - - Init - internal_method - Code - 561 - 581 - - 0 - - - true - PresenciaAgua2 - 02.086 - 03.14 - - 1210866410 - 1210866410 - -1 - 10 - false - false - false - false - true - false - false - false - false - false - 0 - false - false - false - 2 - - GetVal - method - Header - 99 - 119 - - - GetVal - method - Code - 97 - 119 - - 0 - - - true - PresenciaAgua1 - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - false - false - false - false - false - 0 - false - false - false - 2 - - GetVal - method - Header - 99 - 119 - - - GetVal - method - Code - 97 - 119 - - 0 - - - true - S_Wire - 02.611 - 01.33 - Events - 1196556517 - 1196556517 - -1 - 30 - false - false - false - false - true - true - false - false - false - false - false - true - false - true - true - false - false - false - false - false - false - false - false - false - false - false - false - false - false - false - 12 - 0 - S_Wire_BeforeNewSpeed - interrupts disabled - 0 - S_Wire_AfterNewSpeed - interrupts disabled - 3 - S_Wire_OnError - same as interrupt - 3 - S_Wire_OnRxChar - same as interrupt - 1 - S_Wire_OnRxCharExt - same as interrupt - 3 - S_Wire_OnTxChar - same as interrupt - 0 - S_Wire_OnFullRxBuf - same as interrupt - 0 - S_Wire_OnFreeTxBuf - same as interrupt - 0 - S_Wire_OnBreak - same as interrupt - 1 - S_Wire_OnIdle - same as interrupt - 1 - S_Wire_OnTxComplete - same as interrupt - 0 - S_Wire_OnRxActiveEdge - same as interrupt - false - false - false - 19 - - RecvChar - method - Header - 160 - 193 - - - SendChar - method - Header - 194 - 217 - - - GetCharsInRxBuf - method - Header - 218 - 231 - - - GetCharsInTxBuf - method - Header - 232 - 246 - - - SetBaudRateMode - method - Header - 247 - 278 - - - InterruptRx - internal_method - Header - 279 - 290 - - - InterruptTx - internal_method - Header - 291 - 302 - - - InterruptError - internal_method - Header - 303 - 314 - - - InterruptCs - internal_method - Header - 315 - 315 - - - Init - internal_method - Header - 316 - 328 - - - RecvChar - method - Code - 138 - 184 - - - SendChar - method - Code - 185 - 220 - - - GetCharsInRxBuf - method - Code - 221 - 237 - - - GetCharsInTxBuf - method - Code - 238 - 255 - - - InterruptRx - internal_method - Code - 256 - 294 - - - InterruptTx - internal_method - Code - 295 - 320 - - - InterruptError - internal_method - Code - 321 - 339 - - - SetBaudRateMode - method - Code - 340 - 384 - - - Init - internal_method - Code - 385 - 415 - - 0 - - - Drivers\ColdFireV1\BitIO.drv=1116866294 - Drivers\Common\ADCGetValue8.inc=1146382935 - Drivers\Common\ExternalInterruptSettings.inc=1116866294 - Drivers\Common\CheckRegBits8_Rst.prg=1116866294 - Drivers\Common\PE_TypesSettings.inc=1116866294 - Drivers\Common\PE_MisraRuleToDocumentation_HCS08.prg=1146382935 - Drivers\Common\TimerIntSettings.inc=1116866294 - Drivers\HCS08\TimerSubroutines_EnDisEvent.prg=1116866294 - Drivers\Common\AsynchroSerialClearRxBuf.inc=1116866294 - Drivers\Common\PE_TimerAbstract.inc=1116866294 - Drivers\ColdFireV1\ColdFireV1_Linker.prg=1116866294 - Drivers\Common\GenWatchDogResetCode.prg=1121555243 - Drivers\Common\TimerIntDisable.inc=1116866294 - Drivers\Common\Header.End=1116866294 - Drivers\Common\CopyrightUserC.inc=1116866294 - Drivers\Common\AsynchroSerialRecvBlock.inc=1116866294 - Drivers\Common\AsynchroSerialOnFreeTxBuf.inc=1116866294 - Drivers\Common\CommonRegInitialization_Flash.prg=1116866294 - Drivers\Common\CommonInitializationSequenceNames.inc=1116866294 - Drivers\HCS08\Init_PORT_HCS08.prg=1127381294 - Drivers\Common\CommonRegInit_WriteOnce.prg=1116866294 - Drivers\Common\InternalI2CSendChar.inc=1116866294 - Drivers\ColdFireV1\InitPin.prg=1116866294 - Drivers\Common\PWMSetRatio16.inc=1116866294 - Drivers\Common\CriticalSectionSettings.Inc=1190232498 - Drivers\Common\TimerIntEnable.inc=1116866294 - Drivers\HCS08\TimerSubroutines_All.prg=1116866294 - Drivers\Common\GenReg8BitsInitInfo.prg=1116866294 - Drivers\Common\ADCMeasureChan.inc=1146382935 - Drivers\Common\SetReg8_Rst.prg=1116866294 - Drivers\Common\PE_TimerLngHi3.inc=1116866294 - Drivers\HCS08\ADC.drv=1116866294 - Drivers\HCS08\MC9S08_LowLevelInit.prg=1116866294 - Drivers\Common\ADCGetValue16.inc=1146382935 - Drivers\Common\OneBitIOClrVal.inc=1116866294 - Drivers\Common\CommonInitialization_WriteOnce.prg=1116866294 - Drivers\Common\PWMSetDutyMS.inc=1116866294 - Drivers\AsynchroSerial.src=1122284138 - Drivers\HCS08\TimerSubroutines_Output.prg=1116866294 - Drivers\Common\SetRegBits8_Rst.prg=1116866294 - Drivers\Common\DefineISR.prg=1120303303 - Drivers\Common\GenReg16BitsInitInfo.prg=1116866294 - Drivers\Common\PE_ConstSettings.inc=1116866294 - Drivers\ColdFireV1\PE_Types.drv=1116866294 - Drivers\Common\PWMAbstract.inc=1116866294 - Drivers\Common\InitReg8.prg=1116866294 - Drivers\Common\CommonInitialization.prg=1116866294 - Drivers\Common\ExternalInterruptOnInterrupt.inc=1116866294 - Drivers\Common\ColdFireV1Settings.inc=1116866294 - Drivers\Common\InternalI2CRecvChar.inc=1116866294 - Drivers\Common\InternalI2CSettings.inc=1116866294 - Drivers\ColdFireV1\InternalPeripherals_IO.prg=1116866294 - Drivers\HCS08\CreateDataSection.prg=1116866294 - Drivers\sw\CpuDelay100US.prg=1116866294 - Drivers\Common\Header.end=1116866294 - Drivers\Common\OneBitIOPutVal.inc=1116866294 - Drivers\Common\AsynchroSerialGetCharsInRxBuf.inc=1116866294 - Drivers\Common\PE_TimerSettings.inc=1116866294 - Drivers\Common\InternalI2CAbstract.inc=1116866294 - Drivers\HCS08\PE_Timer.drv=1116866294 - Drivers\ColdFireV1\ColdFireV1.drv=1146382935 - Drivers\Common\CommonRegInit.prg=1116866294 - Drivers\Common\AsynchroSerialClearTxBuf.inc=1116866294 - Drivers\Common\ColdFireV1DisableInt.inc=1116866294 - Drivers\HCS08\ExternalInterrupt.drv=1116866294 - Drivers\Common\UsedOutPin.inc=1116866294 - Drivers\Common\AsynchroSerialOnError.inc=1116866294 - Drivers\Common\IO_MapAbstract.inc=1116866294 - Drivers\HC08\Common_HCx08\MC9x08_WhileSet.prg=1116866294 - Drivers\Common\AsynchroSerialSetBaudRateMode.inc=1116866294 - Drivers\Common\CriticalSectionExitCritical.Inc=1190232495 - Drivers\Common\DataHeader.inc=1116866294 - Drivers\ColdFireV1\IO_Map.drv=1116866294 - Drivers\Common\AsynchroSerialSendBlock.inc=1116866294 - Drivers\Common\BufIndxInc.prg=1116866294 - Drivers\Common\GeneralInternal.inc=1116866294 - Drivers\Common\GenReg32BitsInitInfo.prg=1116866294 - Drivers\Common\Header.c=1116866294 - Drivers\Common\Header.h=1116866294 - Drivers\sw\CriticalSection.drv=1190232498 - Drivers\Common\OneBitIOSettings.inc=1116866294 - Drivers\Common\ColdFireV1Delay100US.inc=1116866294 - Drivers\HC08\Common_HCx08\MC9x08_InitTrimCode.prg=1116866294 - Drivers\HCS08\AsynchroSerial.drv=1161912572 - Drivers\Common\InitReg8Block.prg=1116866294 - Drivers\Common\ErrorDefinitions.inc=1116866294 - Drivers\Common\PWMEnable.inc=1116866294 - Drivers\Common\PE_ConstAbstract.inc=1116866294 - Drivers\HC08\Common_HCx08\MC9x08_WhileNotValue.prg=1116866294 - Drivers\Common\Header.C=1116866294 - Drivers\Common\Header.H=1116866294 - Drivers\Common\GeneralMethod.inc=1116866294 - Drivers\Common\PE_MisraRuleToErrorCode.prg=1127381294 - Drivers\Common\PE_TimerLngHi2.inc=1116866294 - Drivers\Common\HeaderCopyright.inc=1146382935 - Drivers\HCS08\CreateIntSection.prg=1116866294 - Drivers\Common\PE_MisraRuleToDocumentation.prg=1116866294 - Drivers\HCS08\MC9S08_MemProtect.prg=1116866294 - Drivers\HCS08\InitPin.prg=1116866294 - Drivers\HCS08\MC9S08_DefineRegsAndBitsAccess.prg=1116866294 - Drivers\Common\ADCGetChanValue16.inc=1146382935 - Drivers\Common\AsynchroSerialSendChar.inc=1116866294 - Drivers\Common\PWMSetRatio8.inc=1116866294 - Drivers\ColdFireV1\MCF51QE128_80c.prg=1116866294 - Drivers\HCS08\TimerSubroutines_TmrAsSharedPresc.prg=1116866294 - Drivers\Common\ExternalInterruptInterrupt.inc=1116866294 - Drivers\Common\GeneralParametersNone.inc=1116866294 - Drivers\Common\ExternalInterruptGetVal.inc=1116866294 - Drivers\Common\ADCMeasure.inc=1146382935 - Drivers\HCS08\MC9S08_Constants.prg=1116866294 - Drivers\Common\GeneralInternalGlobal.inc=1116866294 - Drivers\Common\PE_MisraEnableRules.prg=1116866294 - Drivers\Common\GeneralInternalDescription.prg=1116866294 - Drivers\Common\PWMSettings.inc=1127381294 - Drivers\Common\InitReg8Enable.prg=1116866294 - Drivers\Common\GeneralParameters.inc=1116866294 - Drivers\Common\AsynchroSerialOnRxChar.inc=1116866294 - Drivers\Common\CriticalSectionEnterCritical.Inc=1190232497 - Drivers\TimerInt.src=1122284138 - Drivers\Common\PE_TimerConstants.inc=1116866294 - Drivers\Common\GenReg32InitInfo.prg=1116866294 - Drivers\Common\AsynchroSerialOnFullRxBuf.inc=1116866294 - Drivers\ColdFireV1.src=1121555243 - Drivers\Common\ADCGetChanValue.inc=1146382935 - Drivers\Common\ExternalInterruptAbstract.inc=1116866294 - Drivers\Common\DataHeader.End=1116866294 - Drivers\Common\UsedAsynchroPins.inc=1116866294 - Drivers\BitIO.src=1122284138 - Drivers\HC08\Common_HCx08\MC9x08_COPreset.prg=1116866294 - Drivers\Common\AsynchroSerialSettings.inc=1116866294 - Drivers\Common\OneBitIOAbstract.inc=1116866294 - Drivers\ADC.src=1122284138 - Drivers\ColdFireV1\PE_Error.drv=1116866294 - Drivers\ColdFireV1\ColdFireV1_InterruptVectorTable.prg=1116866294 - Drivers\Common\InternalI2CSendBlock.inc=1116866294 - Drivers\Common\InternalI2CSelectSlave.inc=1116866294 - Drivers\Common\EBGNSupport\StringLib.prg=1146382935 - Drivers\Common\GeneralDamage.inc=1116866294 - Drivers\HCS08\MC9S08_DefineCommonSymbols.prg=1116866294 - Drivers\Common\PWMSetDutyUS.inc=1116866294 - Drivers\Common\ADCGetValue.inc=1146382935 - Drivers\sw\CpuDelay.prg=1146382935 - Drivers\Common\PE_MisraDisableRules.prg=1116866294 - Drivers\HCS08\PWM.drv=1127381294 - Drivers\Common\HeaderGeneral.c=1116866294 - Drivers\Common\UsedPin.inc=1116866294 - Drivers\CriticalSection.src=1190232496 - Drivers\HCS08\MC9S08_EntryPointCode.prg=1116866294 - Drivers\ColdFireV1\PE_Const.drv=1116866294 - Drivers\Common\AsynchroSerialRecvChar.inc=1116866294 - Drivers\Common\OneBitIOSetVal.inc=1116866294 - Drivers\Common\AsynchroSerialAbstract.inc=1116866294 - Drivers\Common\PE_ErrorAbstract.inc=1116866294 - Drivers\ColdFireV1\Init_ExternalBus_COLDFIREV1.prg=1116866294 - Drivers\Common\PWMDisable.inc=1116866294 - Drivers\ExtInt.src=1122284138 - Drivers\Common\GeneralEvent.inc=1116866294 - Drivers\InternalI2C.src=1122284138 - Drivers\Common\AsynchroSerialEnable.inc=1116866294 - Drivers\HCS08\MC9S08_ICS_V3.prg=1116866294 - Drivers\Common\CommonRegInitialization.prg=1116866294 - Drivers\Common\SetReg8.prg=1127381294 - Drivers\HCS08\TimerSubroutines.prg=1116866294 - Drivers\Common\PE_MisraDisableRuleForSymbol.prg=1116866294 - Drivers\Common\OneBitIOGetVal.inc=1116866294 - Drivers\Common\PE_TimerMethods.inc=1116866294 - Drivers\Common\AsynchroSerialGetCharsInTxBuf.inc=1116866294 - Drivers\HC08\Common_HCx08\CommonSubroutines.prg=1116866294 - Drivers\HCS08\TimerInt.drv=1128496915 - Drivers\Common\ADCSettings.inc=1151162642 - Drivers\HCS08\MC9S08_SharedInterruptVectors.prg=1116866294 - Drivers\Common\SetReg16.prg=1127381294 - Drivers\HCS08\InternalI2C.drv=1128496915 - Drivers\HCS08\TimerSubroutines_PeriodicInt.prg=1116866294 - Drivers\Common\Header.doxy=1119169723 - Drivers\Common\PE_TypesAbstract.inc=1116866294 - Drivers\Common\AsynchroSerialDisable.inc=1116866294 - Drivers\Common\ToolChain_Settings.prg=1146382935 - Drivers\Common\CriticalSectionAbstract.Inc=1190232495 - Drivers\HC08\Common_HCx08\MC9x08_WhileNotSet.prg=1116866294 - Drivers\Common\TimerIntOnInterrupt.inc=1116866294 - Drivers\Common\ADCAbstract.inc=1116866294 - Drivers\HCS08\ADC_shared.drv=1116866294 - Drivers\Common\ColdFireV1Abstract.inc=1116866294 - Drivers\Common\InternalI2CRecvBlock.inc=1116866294 - Drivers\Common\InitReg8Speed.prg=1116866294 - Drivers\Common\AsynchroSerialOnTxChar.inc=1116866294 - Drivers\Common\ColdFireV1EnableInt.inc=1116866294 - Drivers\Common\CommonEnabling.prg=1116866294 - Drivers\Common\SetRegBits8.prg=1127381294 - Drivers\Common\Doxy_CollectRegInitInfo.prg=1116866294 - Drivers\Common\CriticalSectionCriticalVariable.Inc=1190232497 - Drivers\Common\OneBitIONegVal.inc=1116866294 - Drivers\Common\DeclareISR.prg=1146382935 - Drivers\Common\PE_TimerLngMul.inc=1116866294 - Drivers\Common\ADCOnEnd.inc=1116866294 - Drivers\HCS08\CreateCodeSection.prg=1116866294 - Drivers\Common\IO_MapSettings.inc=1116866294 - Drivers\Common\TimerIntAbstract.inc=1116866294 - Drivers\Common\GeneralReturnNothing.inc=1116866294 - Drivers\Common\UsedBaudModes.inc=1116866294 - Drivers\PWM.src=1122284138 - Drivers\Common\CommonInitialization_FLASH.prg=1116866294 - Drivers\ColdFireV1\MCF51QE128_80h.prg=1116866294 - - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/20/f049435f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/20/f049435f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/20/f049435f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/2059d9f682c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/2059d9f682c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/2059d9f682c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/20e10f795bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/20e10f795bc4001515648e1660054a1a deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/20e10f795bc4001515648e1660054a1a +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/404b2d1bd4c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/404b2d1bd4c5001515acf159be79a4ca deleted file mode 100644 index 3c64165..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/404b2d1bd4c5001515acf159be79a4ca +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Project_Settings/Startup_Code/startcf.c" \ - -C_SRCS += \ -../Project_Settings/Startup_Code/startcf.c \ - -OBJS += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -OBJS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.obj" \ - -C_DEPS += \ -./Project_Settings/Startup_Code/startcf_c.d \ - -OBJS_OS_FORMAT += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -C_DEPS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Project_Settings/Startup_Code/startcf_c.obj: ../Project_Settings/Startup_Code/startcf.c - @echo 'Building file: $<' - @echo 'Executing target #5 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Project_Settings/Startup_Code/startcf.args" -o "Project_Settings/Startup_Code/startcf_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Project_Settings/Startup_Code/%.d: ../Project_Settings/Startup_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/50b2a4c46fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/50b2a4c46fc40015180fe241a6b5bfe5 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/80271b7d3dc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/80271b7d3dc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/80271b7d3dc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/9039af4037c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/9039af4037c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/9039af4037c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/a01ea8785bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/a01ea8785bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/a01ea8785bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/a0ee3c3c42c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/a0ee3c3c42c4001515648e1660054a1a deleted file mode 100644 index 02e1842..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/a0ee3c3c42c4001515648e1660054a1a +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 88 - \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/d007073f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/d007073f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 8578f04..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/21/d007073f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,325 +0,0 @@ -/* ################################################################### -** Filename : Events.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Component : Events -** Version : Driver 01.02 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** This is user's event module. -** Put your event handler code here. -** Settings : -** Contents : -** No public methods -** -** ###################################################################*/ -/*! -** @file Events.c -** @version 01.02 -** @brief -** This is user's event module. -** Put your event handler code here. -*/ -/*! -** @addtogroup Events_module Events module documentation -** @{ -*/ -/* MODULE Events */ - -#include "Cpu.h" -#include "Events.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -unsigned short err = 0; -byte data[27]; -byte data2[2]; -byte dataTest[14]; -byte dataInPC[10]; -byte in; - -/* - * Variables - */ -bool led0x00 = FALSE; //0x00 sMCU_OK Led -bool led0x01 = FALSE; //0x01 sCom_In Led -bool led0x02 = FALSE; //0x02 sPC_OK Led -bool led0x03 = FALSE; //0x03 -bool led0x04 = FALSE; //0x04 -bool led0x05 = FALSE; //0x05 -bool led0x06 = FALSE; //0x06 -bool led0x07 = FALSE; //0x07 - -byte SerialIn; -wordbyte wordIn; -byte wordInByte[2]; -word error; -byte STATUS_PC; -//Tiempo -byte tLed = 0x00; -byte tMotor = 0x00; - -/* -** =================================================================== -** Event : Aux_Int_OnInterrupt (module Events) -** -** Component : Aux_Int [TimerInt] -** Description : -** When a timer interrupt occurs this event is called (only -** when the component is enabled - and the events are -** enabled - ). This event is enabled only if a -** is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ - -//Resolucion de 10 ms -void Aux_Int_OnInterrupt(void) -{ - - //Bucle para 100 ms de leds - if(tLed != 10-1) - { - tLed++; - } - else - { - //Control de leds de status - if(led0x00 == TRUE) sMCU_OK_NegVal(); //0x00 - else sMCU_OK_ClrVal(); - if(led0x01 == TRUE) sCom_In_NegVal(); //0x01 - else sCom_In_ClrVal(); - if(led0x02 == TRUE) sPC_OK_NegVal(); //0x02 - else sPC_OK_ClrVal(); - tLed = 0; - } - - - //Bucle para 100 ms de leds - if(tMotor != 2-1) - { - tMotor++; - } - else - { - - } - - - - /*TRANSMISION DE DATA*/ - - //Transmitir DATA - - - - - -} - -/* -** =================================================================== -** Event : SerialCom_OnRxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnRxChar(void) -{ - -} - -/* -** =================================================================== -** Event : SerialCom_OnTxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : RESET_INTERRUPT_OnInterrupt (module Events) -** -** Component : RESET_INTERRUPT [ExtInt] -** Description : -** This event is called when an active signal edge/level has -** occurred. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void RESET_INTERRUPT_OnInterrupt(void) -{ - - -} - -/* -** =================================================================== -** Event : ADC_OnEnd (module Events) -** -** Component : ADC [ADC] -** Description : -** This event is called after the measurement (which consists -** of <1 or more conversions>) is/are finished. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void ADC_OnEnd(void) -{ - /* Write your code here ... */ -} - - -/* -** =================================================================== -** Event : SerialCom_OnFullRxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called when the input buffer is full; -** i.e. after reception of the last character -** that was successfully placed into input buffer. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFullRxBuf(void) -{ - sPC_OK_W(); - (void)SerialCom_RecvBlock(dataInPC,10,&err); - (void)SerialCom_ClearRxBuf(); - if(dataInPC[9] == 0xFF) - { - //Set the motor speed - setMotorSpeed256(dataInPC[0],1); - setMotorSpeed256(dataInPC[1],2); - setMotorSpeed256(dataInPC[2],3); - setMotorSpeed256(dataInPC[3],4); - - //Servo Pos - - servoPanAngle(dataInPC[4]);//Resolucin de 0 - 255 - servoTiltAngle(dataInPC[5]);//Resolucin de 0 - 255 - - //Set Light bright - (void)LedLight1_SetRatio8(dataInPC[6]); - (void)LedLight2_SetRatio8(dataInPC[7]); - - STATUS_PC = dataInPC[8]; - } - sPC_OK_NW(); - -} - -/* -** =================================================================== -** Event : SerialCom_OnFreeTxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after the last character in output -** buffer is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFreeTxBuf(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnError (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called when a channel error (not the error -** returned by a given method) occurs. The errors can be read -** using method. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnError(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnRxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnRxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnTxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* END Events */ - -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/100f648380c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/100f648380c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/100f648380c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/1018b03e6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/1018b03e6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/1018b03e6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/207be82d70c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/207be82d70c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/207be82d70c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/305a40c943c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/305a40c943c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/305a40c943c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/4025e07a35c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/4025e07a35c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/4025e07a35c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/a057aac46fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/a057aac46fc40015180fe241a6b5bfe5 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/b048043f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/b048043f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 3169351..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/b048043f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,186 +0,0 @@ -/* - * xSub.h - * - * Created on: Jun 11, 2015 - * Author: ddtdanilo - */ - -#ifndef XSUB_H_ -#define XSUB_H_ - - - -/*Definiciones de tipos*/ - -typedef union{ - byte byte[2]; - word word; -}wordbyte; - -typedef struct{ - byte data; - byte pos; -}vFisica8; - -typedef struct{ - vFisica8 HIGH; - vFisica8 LOW; - word word; -}vFisica16; - - - -/* - * Variables Globales - */ -extern byte SIZEPACKAGE; - - -extern byte data[27]; -extern byte dataTest[14]; -extern byte data2[2]; -/*STATUS*/ -extern bool led0x00; //0x00 sMCU_OK Led -extern bool led0x01; //0x01 sCom_In Led -extern bool led0x02; //0x02 sPC_OK Led -extern bool led0x03; //0x03 -extern bool led0x04; //0x04 -extern bool led0x05; //0x05 -extern bool led0x06; //0x06 -extern bool led0x07; //0x07 - -/*Puerto Serial*/ -extern byte SIZEBUFFERIN; -extern byte SIZEBUFFEROUT; -extern byte dataInPC[10]; - -/*I2C*/ - -extern byte MPU6050_ACCEL_CONFIG; // R/W -extern byte MPU6050_AFS_SEL_4G; //Config para +-4G -extern byte MPU6050_GYRO_CONFIG; //R/W -extern byte MPU6050_FS_SEL_1000; //Config para +-1000/s -extern byte MPU; // I2C address of the MPU-6050 -extern byte HMC6352; - - -/*Variables*/ - -extern byte STATUS_PC; -//--- -extern vFisica8 STATUS; -extern vFisica16 tempExterna; -extern vFisica16 tempInterna; -extern vFisica16 presExterna; -extern vFisica16 aceleracionX; -extern vFisica16 aceleracionY; -extern vFisica16 aceleracionZ; -extern vFisica16 velAngularX; -extern vFisica16 velAngularY; -extern vFisica16 velAngularZ; -extern vFisica16 velLineal; -extern vFisica16 angBrujula; -extern vFisica8 presenciaAgua; -extern vFisica8 cargaBaterias; -extern vFisica8 XOR; -extern vFisica8 finTrama; - - - - - - - - - -//Se encarga de inicializar el xSub -void initMxSub(byte tipo); -void initVFisicas();//Genera la numeracin de la posicin -void vFisicas2Array(); - - -//MOTORES*************** -extern byte tMotor; -extern word CENTERDC; -extern word MAXFORWARD; -extern word MAXBACKWARD; - -//Servos********* -extern word MINSERVOUS; -extern word MAXSERVOUS; - -//Activa a sMCU_OK -void sMCU_OK_W(); -//Desactiva a sMCU_OK -void sMCU_OK_NW(); -//Muestra titilando a sCom -void sCom_In_W(); -//Desactiva a sCom -void sCom_In_NW(); -//Muestra titilando a sPC_OK -void sPC_OK_W(); -//Desactiva a sPC_OK -void sPC_OK_NW(); - -//paraliza el MCU por el tiempo time en ms -void delay(word time); -//Mapea -long map(long x, long in_min,long in_max,long out_min, long out_max); - -//***************Motores :D ********************************** -void initMxSub(byte tipo); - -//Coloca un DC a todos los motores -void setDC(word Speed); - -//Setea la velocidad de los motores de manera individual. Rango de 10 bits-> 0 - 1023 -void setMotorSpeed1024(word Speed,byte Motor); -//Setea la velocidad de los motores de manera individual. Rango de 8 bits-> 0 - 255 -void setMotorSpeed256(byte Speed,byte Motor); -//Setea la velocidad de los motores de manera individual. Rango de 10 bits-> 0 - 1023 SKYWING -void setMotorSpeed1024SW(word Speed,byte Motor); - -/***SERVOS*/ -void servoPanAngle(word Angle);//Resolucin de 0 - 179 -void servoPan1024(word In);//Resolucin de 0 - 1023 (0 - 0x1023) -void servoTiltAngle(word Angle);//Resolucin de 0 - 179 -void servoTilt1024(word In);//Resolucin de 0 - 1023 (0 - 0x1023) - -/****LEDS****/ - void setLEDPWM(word PWM);//Setea los dos leds - void setLED1PWM(word PWM); - void setLED2PWM(word PWM); - - - /*I2C*/ - - byte writeRegisterI2C(byte reg, byte data);//manera sencilla de editar un registro - -/*Tranmisin de Data*/ - - - - -//Inicializacin MCU -byte initxSub(); - -void initMPU();//Inicializa la IMU - -//Obtener data de la IMU. data debe ser de tamao 14 -void dataMPUtoArray(byte dataIn[]); - -void initHMC6352();//Inicializa la IMU - -//Obtener data del magnetometro. data debe ser de tamao 2 -void dataHMC6352toArray(byte dataIn[]); - -//Envio de data a PC -void dataTrans(byte dataOut[], byte tam); -//envio de paquetes -void envioData(); - -//Recopila la data -void getDataAll(); - - -#endif /* XSUB_H_ */ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/e077b3d23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/e077b3d23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/e077b3d23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/f049f6c13ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/f049f6c13ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/22/f049f6c13ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/23/40e433cd7fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/23/40e433cd7fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/23/40e433cd7fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/23/a050ed5035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/23/a050ed5035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/23/a050ed5035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/23/c04eebd9cec5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/23/c04eebd9cec5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/23/c04eebd9cec5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/00b03f7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/00b03f7e7cc400151f08d780d899b0c2 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/00b03f7e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/00f633d36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/00f633d36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/00f633d36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/206ec81138c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/206ec81138c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/206ec81138c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/301978c36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/301978c36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/301978c36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/50a9ed846fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/50a9ed846fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/50a9ed846fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/50e427369cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/50e427369cc6001511f8dea3160ea30e deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/50e427369cc6001511f8dea3160ea30e +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/60c6ffa983c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/60c6ffa983c4001518258e1c1f15aebe deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/60c6ffa983c4001518258e1c1f15aebe +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/60e2a94037c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/60e2a94037c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/60e2a94037c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/701c25a580c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/701c25a580c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/701c25a580c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/a0c523369cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/a0c523369cc6001511f8dea3160ea30e deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/a0c523369cc6001511f8dea3160ea30e +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/b06d7c1d5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/b06d7c1d5bc4001515648e1660054a1a deleted file mode 100644 index 6e95f35..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/b06d7c1d5bc4001515648e1660054a1a +++ /dev/null @@ -1,185 +0,0 @@ -/* - * xSub.h - * - * Created on: Jun 11, 2015 - * Author: ddtdanilo - */ - -#ifndef XSUB_H_ -#define XSUB_H_ - - - -/*Definiciones de tipos*/ - -typedef union{ - byte byte[2]; - word word; -}wordbyte; - -typedef struct{ - byte data; - byte pos; -}vFisica8; - -typedef struct{ - vFisica8 HIGH; - vFisica8 LOW; -}vFisica16; - - - -/* - * Variables Globales - */ -extern byte SIZEPACKAGE; - - -extern byte data[27]; -extern byte dataTest[14]; -extern byte data2[2]; -/*STATUS*/ -extern bool led0x00; //0x00 sMCU_OK Led -extern bool led0x01; //0x01 sCom_In Led -extern bool led0x02; //0x02 sPC_OK Led -extern bool led0x03; //0x03 -extern bool led0x04; //0x04 -extern bool led0x05; //0x05 -extern bool led0x06; //0x06 -extern bool led0x07; //0x07 - -/*Puerto Serial*/ -extern byte SIZEBUFFERIN; -extern byte SIZEBUFFEROUT; -extern byte dataInPC[10]; - -/*I2C*/ - -extern byte MPU6050_ACCEL_CONFIG; // R/W -extern byte MPU6050_AFS_SEL_4G; //Config para +-4G -extern byte MPU6050_GYRO_CONFIG; //R/W -extern byte MPU6050_FS_SEL_1000; //Config para +-1000/s -extern byte MPU; // I2C address of the MPU-6050 -extern byte HMC6352; - - -/*Variables*/ - -extern byte STATUS_PC; -//--- -extern vFisica8 STATUS; -extern vFisica16 tempExterna; -extern vFisica16 tempInterna; -extern vFisica16 presExterna; -extern vFisica16 aceleracionX; -extern vFisica16 aceleracionY; -extern vFisica16 aceleracionZ; -extern vFisica16 velAngularX; -extern vFisica16 velAngularY; -extern vFisica16 velAngularZ; -extern vFisica16 velLineal; -extern vFisica16 angBrujula; -extern vFisica8 presenciaAgua; -extern vFisica8 cargaBaterias; -extern vFisica8 XOR; -extern vFisica8 finTrama; - - - - - - - - - -//Se encarga de inicializar el xSub -void initMxSub(byte tipo); -void initVFisicas();//Genera la numeracin de la posicin -void vFisicas2Array(); - - -//MOTORES*************** -extern byte tMotor; -extern word CENTERDC; -extern word MAXFORWARD; -extern word MAXBACKWARD; - -//Servos********* -extern word MINSERVOUS; -extern word MAXSERVOUS; - -//Activa a sMCU_OK -void sMCU_OK_W(); -//Desactiva a sMCU_OK -void sMCU_OK_NW(); -//Muestra titilando a sCom -void sCom_In_W(); -//Desactiva a sCom -void sCom_In_NW(); -//Muestra titilando a sPC_OK -void sPC_OK_W(); -//Desactiva a sPC_OK -void sPC_OK_NW(); - -//paraliza el MCU por el tiempo time en ms -void delay(word time); -//Mapea -long map(long x, long in_min,long in_max,long out_min, long out_max); - -//***************Motores :D ********************************** -void initMxSub(byte tipo); - -//Coloca un DC a todos los motores -void setDC(word Speed); - -//Setea la velocidad de los motores de manera individual. Rango de 10 bits-> 0 - 1023 -void setMotorSpeed1024(word Speed,byte Motor); -//Setea la velocidad de los motores de manera individual. Rango de 8 bits-> 0 - 255 -void setMotorSpeed256(byte Speed,byte Motor); -//Setea la velocidad de los motores de manera individual. Rango de 10 bits-> 0 - 1023 SKYWING -void setMotorSpeed1024SW(word Speed,byte Motor); - -/***SERVOS*/ -void servoPanAngle(word Angle);//Resolucin de 0 - 179 -void servoPan1024(word In);//Resolucin de 0 - 1023 (0 - 0x1023) -void servoTiltAngle(word Angle);//Resolucin de 0 - 179 -void servoTilt1024(word In);//Resolucin de 0 - 1023 (0 - 0x1023) - -/****LEDS****/ - void setLEDPWM(word PWM);//Setea los dos leds - void setLED1PWM(word PWM); - void setLED2PWM(word PWM); - - - /*I2C*/ - - byte writeRegisterI2C(byte reg, byte data);//manera sencilla de editar un registro - -/*Tranmisin de Data*/ - - - - -//Inicializacin MCU -byte initxSub(); - -void initMPU();//Inicializa la IMU - -//Obtener data de la IMU. data debe ser de tamao 14 -void dataMPUtoArray(byte dataIn[]); - -void initHMC6352();//Inicializa la IMU - -//Obtener data del magnetometro. data debe ser de tamao 2 -void dataHMC6352toArray(byte dataIn[]); - -//Envio de data a PC -void dataTrans(byte dataOut[], byte tam); -//envio de paquetes -void envioData(); - -//Recopila la data -void getDataAll(); - - -#endif /* XSUB_H_ */ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0f60e795bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0f60e795bc4001515648e1660054a1a deleted file mode 100644 index 91972f6..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/c0f60e795bc4001515648e1660054a1a +++ /dev/null @@ -1,45 +0,0 @@ -"./Generated_Code/sPC_OK_c.obj" -"./Generated_Code/sMCU_OK_c.obj" -"./Generated_Code/sCom_In_c.obj" -"./Generated_Code/Vectors_c.obj" -"./Generated_Code/SerialCom_c.obj" -"./Generated_Code/S_Wire_c.obj" -"./Generated_Code/S_TiltCamera_c.obj" -"./Generated_Code/S_PanCamera_c.obj" -"./Generated_Code/RESET_INTERRUPT_c.obj" -"./Generated_Code/PresenciaAgua2_c.obj" -"./Generated_Code/PresenciaAgua1_c.obj" -"./Generated_Code/PE_Timer_c.obj" -"./Generated_Code/M4_ESC_c.obj" -"./Generated_Code/M3_ESC_c.obj" -"./Generated_Code/M2_ESC_c.obj" -"./Generated_Code/M1_ESC_c.obj" -"./Generated_Code/LedLight2_c.obj" -"./Generated_Code/LedLight1_c.obj" -"./Generated_Code/IO_Map_c.obj" -"./Generated_Code/I2C_c.obj" -"./Generated_Code/Cpu_c.obj" -"./Generated_Code/CS1_c.obj" -"./Generated_Code/Aux_Int_c.obj" -"./Generated_Code/ADC_c.obj" -"./Init_c.obj" -"./Project_Settings/Startup_Code/startcf_c.obj" -"./Sources/xSub_c.obj" -"./Sources/main_c.obj" -"./Sources/OneWire_c.obj" -"./Sources/Events_c.obj" --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --nostdlib -"$(ProjDirPath)/Project_Settings/Linker_Files/ProcessorExpert.lcf" --m __startup --L"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/lib" --application --map --map keep --srec --sreclength 252 --sreceol dos --w on \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/f0eb26cd7fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/f0eb26cd7fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/24/f0eb26cd7fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/004be32d70c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/004be32d70c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/004be32d70c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/00eb578136c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/00eb578136c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/00eb578136c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/30dede2d70c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/30dede2d70c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/30dede2d70c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/30e92e369cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/30e92e369cc6001511f8dea3160ea30e deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/30e92e369cc6001511f8dea3160ea30e +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/70bcb1d23ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/70bcb1d23ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/70bcb1d23ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/803f95d9cec5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/803f95d9cec5001515acf159be79a4ca deleted file mode 100644 index 3c64165..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/803f95d9cec5001515acf159be79a4ca +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Project_Settings/Startup_Code/startcf.c" \ - -C_SRCS += \ -../Project_Settings/Startup_Code/startcf.c \ - -OBJS += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -OBJS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.obj" \ - -C_DEPS += \ -./Project_Settings/Startup_Code/startcf_c.d \ - -OBJS_OS_FORMAT += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -C_DEPS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Project_Settings/Startup_Code/startcf_c.obj: ../Project_Settings/Startup_Code/startcf.c - @echo 'Building file: $<' - @echo 'Executing target #5 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Project_Settings/Startup_Code/startcf.args" -o "Project_Settings/Startup_Code/startcf_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Project_Settings/Startup_Code/%.d: ../Project_Settings/Startup_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/90a47df682c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/90a47df682c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/90a47df682c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/c083e1a480c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/c083e1a480c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/c083e1a480c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/f0e0f76863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/f0e0f76863c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/25/f0e0f76863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/00007dc639c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/00007dc639c8001513b8f2fec7d3ea00 deleted file mode 100644 index 02de40f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/00007dc639c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,119 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -#Progress monitor hint: 30 -first : all --include ../makefile.init - -# This file contains definitions of environment variables used in the makefiles and .args files if exist. --include makefile.local - -RM := "$(GNU_Make_Install_DirEnv)/rm" -f - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Sources/subdir.mk --include Project_Settings/Startup_Code/subdir.mk --include Generated_Code/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXECUTABLES += \ -X-SubMCUFirmware.elf \ - -EXECUTABLES_QUOTED += \ -"X-SubMCUFirmware.elf" \ - -EXECUTABLES_OS_FORMAT += \ -X-SubMCUFirmware.elf \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS += \ -X-SubMCUFirmware.elf.s19 \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED += \ -"X-SubMCUFirmware.elf.s19" \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT += \ -X-SubMCUFirmware.elf.s19 \ - - -# All Target -call-burner := 0 -ifneq ($(strip $(EXECUTABLES)),) -ifneq ($(strip $(BBL_SRCS_QUOTED)),) -call-burner := 1 -endif -endif -ifeq ($(call-burner),1) -all: X-SubMCUFirmware.elf X-SubMCUFirmware.elf.s19 -else -all: X-SubMCUFirmware.elf -endif - -# Tool invocations -X-SubMCUFirmware.elf: $(OBJS) $(USER_OBJS) ../Project_Settings/Linker_Files/ProcessorExpert.lcf - @echo 'Building target: $@' - @echo 'Executing target #31 $@' - @echo 'Invoking: ColdFire Linker' - "$(CF_ToolsDirEnv)/mwldmcf" -o "X-SubMCUFirmware.elf" @@"X-SubMCUFirmware.args" $(USER_OBJS_QUOTED) $(LIBS_QUOTED) - @echo 'Finished building target: $@' - @echo ' ' - -X-SubMCUFirmware.elf.s19: $(BBL_SRCS) $(EXECUTABLES) - @echo 'Executing target #32 $@' - @echo 'Invoking: Burner' - "$(HC08ToolsEnv)/burner.exe" -f="$<" -env"ABS_FILE=$(strip $(EXECUTABLES_OS_FORMAT))" - @echo 'Finished building: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(S_DEPS_QUOTED) "./*/*.obj" "./*.obj" "./*/*/*.obj" $(CPP_DEPS_QUOTED) $(CC_DEPS_QUOTED) $(_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED) $(S_UPPER_DEPS_QUOTED) $(CXX_DEPS_QUOTED) $(ASM_DEPS_QUOTED) $(ASM_UPPER_DEPS_QUOTED) $(C_UPPER_DEPS_QUOTED) $(C++_DEPS_QUOTED) $(EXECUTABLES_QUOTED) "./*/*.d" "./*.d" "./*/*/*.d" $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf $(ProjDirPath)/FLASH/X-SubMCUFirmware.args $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.S19 $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.xMAP - -@echo ' ' - -.PHONY: all clean dependents explicit-dependencies warning-messages -.SECONDARY: - --include ../makefile.targets - -explicit-dependencies: ../Project_Settings/Linker_Files/ProcessorExpert.lcf - -warning-messages: - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/102082785bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/102082785bc4001515648e1660054a1a deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/102082785bc4001515648e1660054a1a +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/703c41d36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/703c41d36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/703c41d36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/90033ac639c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/90033ac639c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/90033ac639c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/909b74c639c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/909b74c639c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/909b74c639c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/c010395f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/c010395f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/c010395f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/e0964b7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/e0964b7e7cc400151f08d780d899b0c2 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/e0964b7e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/f0ad247e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/f0ad247e7cc400151f08d780d899b0c2 deleted file mode 100644 index 17e95fb..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/26/f0ad247e7cc400151f08d780d899b0c2 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/0009e7d9cec5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/0009e7d9cec5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/0009e7d9cec5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/4077a3e537c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/4077a3e537c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/4077a3e537c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/5088eea983c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/5088eea983c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/5088eea983c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/6024afd23ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/6024afd23ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/6024afd23ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/609fd96737c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/609fd96737c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/609fd96737c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/707ec3ef5cc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/707ec3ef5cc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/707ec3ef5cc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/80e825369cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/80e825369cc6001511f8dea3160ea30e deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/80e825369cc6001511f8dea3160ea30e +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/a00a2bcd7fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/a00a2bcd7fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/a00a2bcd7fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/d01089a7d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/d01089a7d2c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/d01089a7d2c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/d054688380c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/d054688380c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/27/d054688380c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/409f3bc943c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/409f3bc943c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/409f3bc943c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/70d9f2846fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/70d9f2846fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/70d9f2846fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/909bbab459c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/909bbab459c4001515648e1660054a1a deleted file mode 100644 index 210c9e1..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/909bbab459c4001515648e1660054a1a +++ /dev/null @@ -1,3116 +0,0 @@ - - - X-Sub MCU Firmware - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\X-Sub MCU Firmware\ - main - Sources\ - ..\Generated_Code\ - Documentation\ - - - MCF51QE128CLK - - false - false - - PE_Types - PE_Error - PE_Const - IO_Map - PE_Timer - - 1196053978 - -1 - -1 - 1196053978 - -1 - -1 - 1196053978 - -1 - -1 - 1196053978 - 1196053978 - -1 - 1196053978 - 1196053978 - -1 - - Project_Settings\Linker_Files\ProcessorExpert.lcf - Generated_Code\Vectors.c - - 1196525144 - 4 - 4 - - - Events - - - S_Wire_OnError - S_Wire_OnRxChar - S_Wire_OnTxChar - ADC_OnEnd - RESET_INTERRUPT_OnInterrupt - SerialCom_OnRxChar - SerialCom_OnTxChar - SerialCom_OnFullRxBuf - SerialCom_OnFreeTxBuf - Aux_Int_OnInterrupt - - - ADC - Aux_Int - Cpu - CS1 - Events - I2C - IO_Map - LedLight1 - LedLight2 - M1_ESC - M2_ESC - M3_ESC - M4_ESC - PE_Const - PE_Error - PE_Timer - PE_Types - PresenciaAgua1 - PresenciaAgua2 - RESET_INTERRUPT - S_PanCamera - S_TiltCamera - S_Wire - sCom_In - SerialCom - sMCU_OK - sPC_OK - - - - M1_ESC - M2_ESC - M3_ESC - M4_ESC - S_PanCamera - S_TiltCamera - sMCU_OK - sCom_In - sPC_OK - Aux_Int - SerialCom - RESET_INTERRUPT - ADC - LedLight1 - LedLight2 - CS1 - I2C - PresenciaAgua2 - PresenciaAgua1 - S_Wire - - - Documentation\X-Sub MCU Firmware_SIGNALS.txt - CodeWarriorColdFireV1 - 76 - - - true - Cpu - 01.014 - 01.12 - Events - 1196053978 - 1211198139 - -1 - 19 - false - false - false - false - true - true - false - false - false - false - false - false - false - false - false - false - false - false - true - 8 - 0 - Cpu_OnAddrRelatedEXP - interrupts disabled - 0 - Cpu_OnInstrRelatedEXP - interrupts disabled - 0 - Cpu_OnTrapEXP - interrupts disabled - 1 - Cpu_OnUnsupportedInstEXP - interrupts disabled - 0 - Cpu_OnSwINT - interrupts disabled - 1 - Cpu_OnReset - interrupts disabled - 0 - Cpu_OnLvdINT - interrupts disabled - 1 - Cpu_OnLvwINT - interrupts disabled - isr_default - _startup - false - false - false - 2 - Project_Settings\Linker_Files\ProcessorExpert.lcf - Generated_Code\Vectors.c - - - true - M1_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M1_ESC_BeforeNewSpeed - interrupts disabled - 0 - M1_ESC_AfterNewSpeed - interrupts disabled - 0 - M1_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 338 - - 0 - - - true - M2_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M2_ESC_BeforeNewSpeed - interrupts disabled - 0 - M2_ESC_AfterNewSpeed - interrupts disabled - 0 - M2_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - M3_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M3_ESC_BeforeNewSpeed - interrupts disabled - 0 - M3_ESC_AfterNewSpeed - interrupts disabled - 0 - M3_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - M4_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M4_ESC_BeforeNewSpeed - interrupts disabled - 0 - M4_ESC_AfterNewSpeed - interrupts disabled - 0 - M4_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 338 - - 0 - - - true - S_PanCamera - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - S_PanCamera_BeforeNewSpeed - interrupts disabled - 0 - S_PanCamera_AfterNewSpeed - interrupts disabled - 0 - S_PanCamera_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - S_TiltCamera - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - S_TiltCamera_BeforeNewSpeed - interrupts disabled - 0 - S_TiltCamera_AfterNewSpeed - interrupts disabled - 0 - S_TiltCamera_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - sMCU_OK - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - true - true - true - true - false - 0 - false - false - false - 10 - - GetVal - method - Header - 103 - 123 - - - PutVal - method - Header - 124 - 138 - - - ClrVal - method - Header - 139 - 151 - - - SetVal - method - Header - 152 - 164 - - - NegVal - method - Header - 165 - 177 - - - GetVal - method - Code - 101 - 123 - - - PutVal - method - Code - 124 - 145 - - - ClrVal - method - Code - 146 - 160 - - - SetVal - method - Code - 161 - 175 - - - NegVal - method - Code - 176 - 190 - - 0 - - - true - sCom_In - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - true - true - true - true - false - 0 - false - false - false - 10 - - GetVal - method - Header - 103 - 123 - - - PutVal - method - Header - 124 - 138 - - - ClrVal - method - Header - 139 - 151 - - - SetVal - method - Header - 152 - 164 - - - NegVal - method - Header - 165 - 177 - - - GetVal - method - Code - 101 - 123 - - - PutVal - method - Code - 124 - 145 - - - ClrVal - method - Code - 146 - 160 - - - SetVal - method - Code - 161 - 175 - - - NegVal - method - Code - 176 - 190 - - 0 - - - true - sPC_OK - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - true - true - true - true - false - 0 - false - false - false - 10 - - GetVal - method - Header - 103 - 123 - - - PutVal - method - Header - 124 - 138 - - - ClrVal - method - Header - 139 - 151 - - - SetVal - method - Header - 152 - 164 - - - NegVal - method - Header - 165 - 177 - - - GetVal - method - Code - 101 - 123 - - - PutVal - method - Code - 124 - 145 - - - ClrVal - method - Code - 146 - 160 - - - SetVal - method - Code - 161 - 175 - - - NegVal - method - Code - 176 - 190 - - 0 - - - true - Aux_Int - 02.161 - 01.23 - Events - 1196142058 - 1196142058 - -1 - 14 - true - true - false - false - false - false - false - false - false - false - false - false - false - false - 3 - 0 - Aux_Int_BeforeNewSpeed - interrupts disabled - 0 - Aux_Int_AfterNewSpeed - interrupts disabled - 2 - Aux_Int_OnInterrupt - same as interrupt - false - false - false - 10 - - Enable - method - Header - 110 - 126 - - - Disable - method - Header - 127 - 142 - - - Interrupt - internal_method - Header - 143 - 154 - - - Init - internal_method - Header - 155 - 167 - - - HWEnDi - internal_method_declaration - Code - 107 - 119 - - - HWEnDi - internal_method - Code - 123 - 144 - - - Enable - method - Code - 145 - 167 - - - Disable - method - Code - 168 - 190 - - - Init - internal_method - Code - 191 - 211 - - - Interrupt - internal_method - Code - 212 - 230 - - 0 - - - true - SerialCom - 02.611 - 01.33 - Events - 1211782027 - 1211782027 - -1 - 30 - true - true - false - false - true - true - true - true - true - true - false - true - false - true - false - false - false - false - false - false - false - false - false - false - false - false - false - false - false - false - 12 - 0 - SerialCom_BeforeNewSpeed - interrupts disabled - 0 - SerialCom_AfterNewSpeed - interrupts disabled - 1 - SerialCom_OnError - same as interrupt - 3 - SerialCom_OnRxChar - same as interrupt - 1 - SerialCom_OnRxCharExt - same as interrupt - 3 - SerialCom_OnTxChar - same as interrupt - 3 - SerialCom_OnFullRxBuf - same as interrupt - 3 - SerialCom_OnFreeTxBuf - same as interrupt - 0 - SerialCom_OnBreak - same as interrupt - 1 - SerialCom_OnIdle - same as interrupt - 1 - SerialCom_OnTxComplete - same as interrupt - 0 - SerialCom_OnRxActiveEdge - same as interrupt - false - false - false - 29 - - Enable - method - Header - 155 - 171 - - - Disable - method - Header - 172 - 187 - - - RecvChar - method - Header - 188 - 221 - - - SendChar - method - Header - 222 - 245 - - - RecvBlock - method - Header - 246 - 279 - - - SendBlock - method - Header - 280 - 304 - - - ClearRxBuf - method - Header - 305 - 321 - - - ClearTxBuf - method - Header - 322 - 339 - - - GetCharsInRxBuf - method - Header - 340 - 354 - - - GetCharsInTxBuf - method - Header - 355 - 370 - - - InterruptRx - internal_method - Header - 371 - 382 - - - InterruptTx - internal_method - Header - 383 - 394 - - - InterruptError - internal_method - Header - 395 - 406 - - - InterruptCs - internal_method - Header - 407 - 407 - - - Init - internal_method - Header - 408 - 420 - - - Enable - method - Code - 147 - 177 - - - Disable - method - Code - 178 - 204 - - - RecvChar - method - Code - 205 - 256 - - - SendChar - method - Code - 257 - 298 - - - RecvBlock - method - Code - 299 - 354 - - - SendBlock - method - Code - 355 - 410 - - - ClearRxBuf - method - Code - 411 - 436 - - - ClearTxBuf - method - Code - 437 - 462 - - - GetCharsInRxBuf - method - Code - 463 - 480 - - - GetCharsInTxBuf - method - Code - 481 - 499 - - - InterruptRx - internal_method - Code - 500 - 541 - - - InterruptTx - internal_method - Code - 542 - 583 - - - InterruptError - internal_method - Code - 584 - 601 - - - Init - internal_method - Code - 602 - 638 - - 0 - - - true - RESET_INTERRUPT - 02.105 - 01.24 - Events - 1196053978 - 1196053978 - -1 - 4 - false - false - true - false - 1 - 2 - RESET_INTERRUPT_OnInterrupt - same as interrupt - false - false - false - 4 - - Interrupt - internal_method - Header - 105 - 116 - - - GetVal - method - Header - 117 - 131 - - - Interrupt - internal_method - Code - 96 - 111 - - - GetVal - method - Code - 112 - 129 - - 0 - - - true - ADC - 01.697 - 01.30 - Events - 1196053978 - 1196053978 - -1 - 19 - false - false - false - false - false - false - true - true - false - true - true - true - false - true - true - false - false - false - false - 3 - 0 - ADC_BeforeNewSpeed - interrupts disabled - 0 - ADC_AfterNewSpeed - interrupts disabled - 3 - ADC_OnEnd - same as interrupt - false - false - false - 22 - - Interrupt - internal_method - Header - 127 - 138 - - - HWEnDi - internal_method - Header - 139 - 151 - - - Measure - method - Header - 153 - 187 - - - MeasureChan - method - Header - 188 - 220 - - - GetValue - method - Header - 221 - 252 - - - GetChanValue - method - Header - 253 - 290 - - - GetValue8 - method - Header - 291 - 320 - - - GetValue16 - method - Header - 321 - 350 - - - GetChanValue16 - method - Header - 351 - 386 - - - Init - internal_method - Header - 387 - 399 - - - ClrSumV - internal_method_declaration - Code - 112 - 122 - - - Interrupt - internal_method - Code - 142 - 181 - - - ClrSumV - internal_method - Code - 182 - 200 - - - HWEnDi - internal_method - Code - 201 - 229 - - - Measure - method - Code - 230 - 275 - - - MeasureChan - method - Code - 276 - 323 - - - GetValue - method - Code - 324 - 366 - - - GetChanValue - method - Code - 367 - 414 - - - GetValue8 - method - Code - 415 - 455 - - - GetValue16 - method - Code - 456 - 496 - - - GetChanValue16 - method - Code - 497 - 542 - - - Init - internal_method - Code - 543 - 565 - - 0 - - - true - LedLight1 - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - LedLight1_BeforeNewSpeed - interrupts disabled - 0 - LedLight1_AfterNewSpeed - interrupts disabled - 0 - LedLight1_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 338 - - 0 - - - true - LedLight2 - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - LedLight2_BeforeNewSpeed - interrupts disabled - 0 - LedLight2_AfterNewSpeed - interrupts disabled - 0 - LedLight2_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - false - - ??.??? - ??.?? - - -1 - -1 - -1 - 1 - false - 2 - 1 - WDog1_BeforeNewSpeed - interrupts disabled - 1 - WDog1_AfterNewSpeed - interrupts disabled - false - false - false - 0 - 0 - - - true - CS1 - 01.006 - 01.00 - - 1196053978 - 1196053978 - -1 - 3 - true - true - true - 0 - false - false - false - 6 - - CriticalVariable - method - Header - 62 - 74 - - - EnterCritical - method - Header - 75 - 87 - - - ExitCritical - method - Header - 88 - 100 - - - CriticalVariable - method - Code - 42 - 57 - - - EnterCritical - method - Code - 58 - 73 - - - ExitCritical - method - Code - 74 - 89 - - 0 - - - true - I2C - 01.287 - 01.28 - Events - 1211198139 - 1211198139 - -1 - 21 - false - false - false - false - true - true - true - true - false - false - false - false - false - true - false - false - false - false - false - false - false - 16 - 0 - I2C_BeforeNewSpeed - interrupts disabled - 0 - I2C_AfterNewSpeed - interrupts disabled - 0 - I2C_OnReceiveData - same as interrupt - 0 - I2C_OnTransmitData - same as interrupt - 1 - I2C_OnByteTransfer - same as interrupt - 0 - I2C_OnReadReq - same as interrupt - 0 - I2C_OnWriteReq - same as interrupt - 0 - I2C_OnRxChar - same as interrupt - 0 - I2C_OnTxChar - same as interrupt - 0 - I2C_OnFreeTxBuf - same as interrupt - 0 - I2C_OnFullRxBuf - same as interrupt - 0 - I2C_OnArbitLost - same as interrupt - 0 - I2C_OnNACK - same as interrupt - 0 - I2C_OnError - same as interrupt - 0 - I2C_OnTxEmptyChar - same as interrupt - 0 - I2C_OnGeneralCall - same as interrupt - false - false - false - 14 - - SendChar - method - Header - 142 - 186 - - - RecvChar - method - Header - 187 - 235 - - - SendBlock - method - Header - 236 - 292 - - - RecvBlock - method - Header - 293 - 349 - - - SelectSlave - method - Header - 350 - 373 - - - Init - internal_method - Header - 374 - 386 - - - MainComm - internal_method - Code - 160 - 170 - - - MainComm - internal_method - Code - 171 - 267 - - - SendChar - method - Code - 269 - 320 - - - RecvChar - method - Code - 321 - 373 - - - SendBlock - method - Code - 374 - 451 - - - RecvBlock - method - Code - 452 - 529 - - - SelectSlave - method - Code - 530 - 560 - - - Init - internal_method - Code - 561 - 581 - - 0 - - - true - PresenciaAgua2 - 02.086 - 03.14 - - 1210866410 - 1210866410 - -1 - 10 - false - false - false - false - true - false - false - false - false - false - 0 - false - false - false - 2 - - GetVal - method - Header - 99 - 119 - - - GetVal - method - Code - 97 - 119 - - 0 - - - true - PresenciaAgua1 - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - false - false - false - false - false - 0 - false - false - false - 2 - - GetVal - method - Header - 99 - 119 - - - GetVal - method - Code - 97 - 119 - - 0 - - - true - S_Wire - 02.611 - 01.33 - Events - 1196556517 - 1196556517 - -1 - 30 - false - false - false - false - true - true - false - false - false - false - false - true - false - true - true - false - false - false - false - false - false - false - false - false - false - false - false - false - false - false - 12 - 0 - S_Wire_BeforeNewSpeed - interrupts disabled - 0 - S_Wire_AfterNewSpeed - interrupts disabled - 3 - S_Wire_OnError - same as interrupt - 3 - S_Wire_OnRxChar - same as interrupt - 1 - S_Wire_OnRxCharExt - same as interrupt - 3 - S_Wire_OnTxChar - same as interrupt - 0 - S_Wire_OnFullRxBuf - same as interrupt - 0 - S_Wire_OnFreeTxBuf - same as interrupt - 0 - S_Wire_OnBreak - same as interrupt - 1 - S_Wire_OnIdle - same as interrupt - 1 - S_Wire_OnTxComplete - same as interrupt - 0 - S_Wire_OnRxActiveEdge - same as interrupt - false - false - false - 19 - - RecvChar - method - Header - 160 - 193 - - - SendChar - method - Header - 194 - 217 - - - GetCharsInRxBuf - method - Header - 218 - 231 - - - GetCharsInTxBuf - method - Header - 232 - 246 - - - SetBaudRateMode - method - Header - 247 - 278 - - - InterruptRx - internal_method - Header - 279 - 290 - - - InterruptTx - internal_method - Header - 291 - 302 - - - InterruptError - internal_method - Header - 303 - 314 - - - InterruptCs - internal_method - Header - 315 - 315 - - - Init - internal_method - Header - 316 - 328 - - - RecvChar - method - Code - 138 - 184 - - - SendChar - method - Code - 185 - 220 - - - GetCharsInRxBuf - method - Code - 221 - 237 - - - GetCharsInTxBuf - method - Code - 238 - 255 - - - InterruptRx - internal_method - Code - 256 - 294 - - - InterruptTx - internal_method - Code - 295 - 320 - - - InterruptError - internal_method - Code - 321 - 339 - - - SetBaudRateMode - method - Code - 340 - 384 - - - Init - internal_method - Code - 385 - 415 - - 0 - - - Drivers\ColdFireV1\BitIO.drv=1116866294 - Drivers\Common\ADCGetValue8.inc=1146382935 - Drivers\Common\ExternalInterruptSettings.inc=1116866294 - Drivers\Common\CheckRegBits8_Rst.prg=1116866294 - Drivers\Common\PE_TypesSettings.inc=1116866294 - Drivers\Common\PE_MisraRuleToDocumentation_HCS08.prg=1146382935 - Drivers\Common\TimerIntSettings.inc=1116866294 - Drivers\HCS08\TimerSubroutines_EnDisEvent.prg=1116866294 - Drivers\Common\AsynchroSerialClearRxBuf.inc=1116866294 - Drivers\Common\PE_TimerAbstract.inc=1116866294 - Drivers\ColdFireV1\ColdFireV1_Linker.prg=1116866294 - Drivers\Common\GenWatchDogResetCode.prg=1121555243 - Drivers\Common\TimerIntDisable.inc=1116866294 - Drivers\Common\Header.End=1116866294 - Drivers\Common\CopyrightUserC.inc=1116866294 - Drivers\Common\AsynchroSerialRecvBlock.inc=1116866294 - Drivers\Common\AsynchroSerialOnFreeTxBuf.inc=1116866294 - Drivers\Common\CommonRegInitialization_Flash.prg=1116866294 - Drivers\Common\CommonInitializationSequenceNames.inc=1116866294 - Drivers\HCS08\Init_PORT_HCS08.prg=1127381294 - Drivers\Common\CommonRegInit_WriteOnce.prg=1116866294 - Drivers\Common\InternalI2CSendChar.inc=1116866294 - Drivers\ColdFireV1\InitPin.prg=1116866294 - Drivers\Common\PWMSetRatio16.inc=1116866294 - Drivers\Common\CriticalSectionSettings.Inc=1190232498 - Drivers\Common\TimerIntEnable.inc=1116866294 - Drivers\HCS08\TimerSubroutines_All.prg=1116866294 - Drivers\Common\GenReg8BitsInitInfo.prg=1116866294 - Drivers\Common\ADCMeasureChan.inc=1146382935 - Drivers\Common\SetReg8_Rst.prg=1116866294 - Drivers\Common\PE_TimerLngHi3.inc=1116866294 - Drivers\HCS08\ADC.drv=1116866294 - Drivers\HCS08\MC9S08_LowLevelInit.prg=1116866294 - Drivers\Common\ADCGetValue16.inc=1146382935 - Drivers\Common\OneBitIOClrVal.inc=1116866294 - Drivers\Common\CommonInitialization_WriteOnce.prg=1116866294 - Drivers\Common\PWMSetDutyMS.inc=1116866294 - Drivers\AsynchroSerial.src=1122284138 - Drivers\HCS08\TimerSubroutines_Output.prg=1116866294 - Drivers\Common\SetRegBits8_Rst.prg=1116866294 - Drivers\Common\DefineISR.prg=1120303303 - Drivers\Common\GenReg16BitsInitInfo.prg=1116866294 - Drivers\Common\PE_ConstSettings.inc=1116866294 - Drivers\ColdFireV1\PE_Types.drv=1116866294 - Drivers\Common\PWMAbstract.inc=1116866294 - Drivers\Common\InitReg8.prg=1116866294 - Drivers\Common\CommonInitialization.prg=1116866294 - Drivers\Common\ExternalInterruptOnInterrupt.inc=1116866294 - Drivers\Common\ColdFireV1Settings.inc=1116866294 - Drivers\Common\InternalI2CRecvChar.inc=1116866294 - Drivers\Common\InternalI2CSettings.inc=1116866294 - Drivers\ColdFireV1\InternalPeripherals_IO.prg=1116866294 - Drivers\HCS08\CreateDataSection.prg=1116866294 - Drivers\sw\CpuDelay100US.prg=1116866294 - Drivers\Common\Header.end=1116866294 - Drivers\Common\OneBitIOPutVal.inc=1116866294 - Drivers\Common\AsynchroSerialGetCharsInRxBuf.inc=1116866294 - Drivers\Common\PE_TimerSettings.inc=1116866294 - Drivers\Common\InternalI2CAbstract.inc=1116866294 - Drivers\HCS08\PE_Timer.drv=1116866294 - Drivers\ColdFireV1\ColdFireV1.drv=1146382935 - Drivers\Common\CommonRegInit.prg=1116866294 - Drivers\Common\AsynchroSerialClearTxBuf.inc=1116866294 - Drivers\Common\ColdFireV1DisableInt.inc=1116866294 - Drivers\HCS08\ExternalInterrupt.drv=1116866294 - Drivers\Common\UsedOutPin.inc=1116866294 - Drivers\Common\AsynchroSerialOnError.inc=1116866294 - Drivers\Common\IO_MapAbstract.inc=1116866294 - Drivers\HC08\Common_HCx08\MC9x08_WhileSet.prg=1116866294 - Drivers\Common\AsynchroSerialSetBaudRateMode.inc=1116866294 - Drivers\Common\CriticalSectionExitCritical.Inc=1190232495 - Drivers\Common\DataHeader.inc=1116866294 - Drivers\ColdFireV1\IO_Map.drv=1116866294 - Drivers\Common\AsynchroSerialSendBlock.inc=1116866294 - Drivers\Common\BufIndxInc.prg=1116866294 - Drivers\Common\GeneralInternal.inc=1116866294 - Drivers\Common\GenReg32BitsInitInfo.prg=1116866294 - Drivers\Common\Header.c=1116866294 - Drivers\Common\Header.h=1116866294 - Drivers\sw\CriticalSection.drv=1190232498 - Drivers\Common\OneBitIOSettings.inc=1116866294 - Drivers\Common\ColdFireV1Delay100US.inc=1116866294 - Drivers\HC08\Common_HCx08\MC9x08_InitTrimCode.prg=1116866294 - Drivers\HCS08\AsynchroSerial.drv=1161912572 - Drivers\Common\InitReg8Block.prg=1116866294 - Drivers\Common\ErrorDefinitions.inc=1116866294 - Drivers\Common\PWMEnable.inc=1116866294 - Drivers\Common\PE_ConstAbstract.inc=1116866294 - Drivers\HC08\Common_HCx08\MC9x08_WhileNotValue.prg=1116866294 - Drivers\Common\Header.C=1116866294 - Drivers\Common\Header.H=1116866294 - Drivers\Common\GeneralMethod.inc=1116866294 - Drivers\Common\PE_MisraRuleToErrorCode.prg=1127381294 - Drivers\Common\PE_TimerLngHi2.inc=1116866294 - Drivers\Common\HeaderCopyright.inc=1146382935 - Drivers\HCS08\CreateIntSection.prg=1116866294 - Drivers\Common\PE_MisraRuleToDocumentation.prg=1116866294 - Drivers\HCS08\MC9S08_MemProtect.prg=1116866294 - Drivers\HCS08\InitPin.prg=1116866294 - Drivers\HCS08\MC9S08_DefineRegsAndBitsAccess.prg=1116866294 - Drivers\Common\ADCGetChanValue16.inc=1146382935 - Drivers\Common\AsynchroSerialSendChar.inc=1116866294 - Drivers\Common\PWMSetRatio8.inc=1116866294 - Drivers\ColdFireV1\MCF51QE128_80c.prg=1116866294 - Drivers\HCS08\TimerSubroutines_TmrAsSharedPresc.prg=1116866294 - Drivers\Common\ExternalInterruptInterrupt.inc=1116866294 - Drivers\Common\GeneralParametersNone.inc=1116866294 - Drivers\Common\ExternalInterruptGetVal.inc=1116866294 - Drivers\Common\ADCMeasure.inc=1146382935 - Drivers\HCS08\MC9S08_Constants.prg=1116866294 - Drivers\Common\GeneralInternalGlobal.inc=1116866294 - Drivers\Common\PE_MisraEnableRules.prg=1116866294 - Drivers\Common\GeneralInternalDescription.prg=1116866294 - Drivers\Common\PWMSettings.inc=1127381294 - Drivers\Common\InitReg8Enable.prg=1116866294 - Drivers\Common\GeneralParameters.inc=1116866294 - Drivers\Common\AsynchroSerialOnRxChar.inc=1116866294 - Drivers\Common\CriticalSectionEnterCritical.Inc=1190232497 - Drivers\TimerInt.src=1122284138 - Drivers\Common\PE_TimerConstants.inc=1116866294 - Drivers\Common\GenReg32InitInfo.prg=1116866294 - Drivers\Common\AsynchroSerialOnFullRxBuf.inc=1116866294 - Drivers\ColdFireV1.src=1121555243 - Drivers\Common\ADCGetChanValue.inc=1146382935 - Drivers\Common\ExternalInterruptAbstract.inc=1116866294 - Drivers\Common\DataHeader.End=1116866294 - Drivers\Common\UsedAsynchroPins.inc=1116866294 - Drivers\BitIO.src=1122284138 - Drivers\HC08\Common_HCx08\MC9x08_COPreset.prg=1116866294 - Drivers\Common\AsynchroSerialSettings.inc=1116866294 - Drivers\Common\OneBitIOAbstract.inc=1116866294 - Drivers\ADC.src=1122284138 - Drivers\ColdFireV1\PE_Error.drv=1116866294 - Drivers\ColdFireV1\ColdFireV1_InterruptVectorTable.prg=1116866294 - Drivers\Common\InternalI2CSendBlock.inc=1116866294 - Drivers\Common\InternalI2CSelectSlave.inc=1116866294 - Drivers\Common\EBGNSupport\StringLib.prg=1146382935 - Drivers\Common\GeneralDamage.inc=1116866294 - Drivers\HCS08\MC9S08_DefineCommonSymbols.prg=1116866294 - Drivers\Common\PWMSetDutyUS.inc=1116866294 - Drivers\Common\ADCGetValue.inc=1146382935 - Drivers\sw\CpuDelay.prg=1146382935 - Drivers\Common\PE_MisraDisableRules.prg=1116866294 - Drivers\HCS08\PWM.drv=1127381294 - Drivers\Common\HeaderGeneral.c=1116866294 - Drivers\Common\UsedPin.inc=1116866294 - Drivers\CriticalSection.src=1190232496 - Drivers\HCS08\MC9S08_EntryPointCode.prg=1116866294 - Drivers\ColdFireV1\PE_Const.drv=1116866294 - Drivers\Common\AsynchroSerialRecvChar.inc=1116866294 - Drivers\Common\OneBitIOSetVal.inc=1116866294 - Drivers\Common\AsynchroSerialAbstract.inc=1116866294 - Drivers\Common\PE_ErrorAbstract.inc=1116866294 - Drivers\ColdFireV1\Init_ExternalBus_COLDFIREV1.prg=1116866294 - Drivers\Common\PWMDisable.inc=1116866294 - Drivers\ExtInt.src=1122284138 - Drivers\Common\GeneralEvent.inc=1116866294 - Drivers\InternalI2C.src=1122284138 - Drivers\Common\AsynchroSerialEnable.inc=1116866294 - Drivers\HCS08\MC9S08_ICS_V3.prg=1116866294 - Drivers\Common\CommonRegInitialization.prg=1116866294 - Drivers\Common\SetReg8.prg=1127381294 - Drivers\HCS08\TimerSubroutines.prg=1116866294 - Drivers\Common\PE_MisraDisableRuleForSymbol.prg=1116866294 - Drivers\Common\OneBitIOGetVal.inc=1116866294 - Drivers\Common\PE_TimerMethods.inc=1116866294 - Drivers\Common\AsynchroSerialGetCharsInTxBuf.inc=1116866294 - Drivers\HC08\Common_HCx08\CommonSubroutines.prg=1116866294 - Drivers\HCS08\TimerInt.drv=1128496915 - Drivers\Common\ADCSettings.inc=1151162642 - Drivers\HCS08\MC9S08_SharedInterruptVectors.prg=1116866294 - Drivers\Common\SetReg16.prg=1127381294 - Drivers\HCS08\InternalI2C.drv=1128496915 - Drivers\HCS08\TimerSubroutines_PeriodicInt.prg=1116866294 - Drivers\Common\Header.doxy=1119169723 - Drivers\Common\PE_TypesAbstract.inc=1116866294 - Drivers\Common\AsynchroSerialDisable.inc=1116866294 - Drivers\Common\ToolChain_Settings.prg=1146382935 - Drivers\Common\CriticalSectionAbstract.Inc=1190232495 - Drivers\HC08\Common_HCx08\MC9x08_WhileNotSet.prg=1116866294 - Drivers\Common\TimerIntOnInterrupt.inc=1116866294 - Drivers\Common\ADCAbstract.inc=1116866294 - Drivers\HCS08\ADC_shared.drv=1116866294 - Drivers\Common\ColdFireV1Abstract.inc=1116866294 - Drivers\Common\InternalI2CRecvBlock.inc=1116866294 - Drivers\Common\InitReg8Speed.prg=1116866294 - Drivers\Common\AsynchroSerialOnTxChar.inc=1116866294 - Drivers\Common\ColdFireV1EnableInt.inc=1116866294 - Drivers\Common\CommonEnabling.prg=1116866294 - Drivers\Common\SetRegBits8.prg=1127381294 - Drivers\Common\Doxy_CollectRegInitInfo.prg=1116866294 - Drivers\Common\CriticalSectionCriticalVariable.Inc=1190232497 - Drivers\Common\OneBitIONegVal.inc=1116866294 - Drivers\Common\DeclareISR.prg=1146382935 - Drivers\Common\PE_TimerLngMul.inc=1116866294 - Drivers\Common\ADCOnEnd.inc=1116866294 - Drivers\HCS08\CreateCodeSection.prg=1116866294 - Drivers\Common\IO_MapSettings.inc=1116866294 - Drivers\Common\TimerIntAbstract.inc=1116866294 - Drivers\Common\GeneralReturnNothing.inc=1116866294 - Drivers\Common\UsedBaudModes.inc=1116866294 - Drivers\PWM.src=1122284138 - Drivers\Common\CommonInitialization_FLASH.prg=1116866294 - Drivers\ColdFireV1\MCF51QE128_80h.prg=1116866294 - - \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/c0133f7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/c0133f7e7cc400151f08d780d899b0c2 deleted file mode 100644 index 162467e..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/c0133f7e7cc400151f08d780d899b0c2 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/d0232e7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/d0232e7e7cc400151f08d780d899b0c2 deleted file mode 100644 index c73a852..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/d0232e7e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,20 +0,0 @@ -Generated_Code/M4_ESC_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M4_ESC.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M4_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/e0ef0e6a5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/e0ef0e6a5bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/28/e0ef0e6a5bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/1032fc785bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/1032fc785bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/1032fc785bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/106ef2785bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/106ef2785bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/106ef2785bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/10f1688380c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/10f1688380c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/10f1688380c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/200256163ec4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/200256163ec4001515648e1660054a1a deleted file mode 100644 index 1cac541..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/200256163ec4001515648e1660054a1a +++ /dev/null @@ -1,305 +0,0 @@ -/* ################################################################### -** Filename : Events.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Component : Events -** Version : Driver 01.02 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** This is user's event module. -** Put your event handler code here. -** Settings : -** Contents : -** No public methods -** -** ###################################################################*/ -/*! -** @file Events.c -** @version 01.02 -** @brief -** This is user's event module. -** Put your event handler code here. -*/ -/*! -** @addtogroup Events_module Events module documentation -** @{ -*/ -/* MODULE Events */ - -#include "Cpu.h" -#include "Events.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -byte err = 0; -byte data[27]; -byte data2[2]; -byte dataTest[14]; -byte dataIn[SIZEBUFFERIN]; -byte in; - -/* - * Variables - */ -bool led0x00 = FALSE; //0x00 sMCU_OK Led -bool led0x01 = FALSE; //0x01 sCom_In Led -bool led0x02 = FALSE; //0x02 sPC_OK Led -bool led0x03 = FALSE; //0x03 -bool led0x04 = FALSE; //0x04 -bool led0x05 = FALSE; //0x05 -bool led0x06 = FALSE; //0x06 -bool led0x07 = FALSE; //0x07 - -byte SerialIn; -wordbyte wordIn; -byte wordInByte[2]; -word error; -//Tiempo -byte tLed = 0x00; -byte tMotor = 0x00; - -/* -** =================================================================== -** Event : Aux_Int_OnInterrupt (module Events) -** -** Component : Aux_Int [TimerInt] -** Description : -** When a timer interrupt occurs this event is called (only -** when the component is enabled - and the events are -** enabled - ). This event is enabled only if a -** is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ - -//Resolucion de 10 ms -void Aux_Int_OnInterrupt(void) -{ - - //Bucle para 100 ms de leds - if(tLed != 10-1) - { - tLed++; - } - else - { - //Control de leds de status - if(led0x00 == TRUE) sMCU_OK_NegVal(); //0x00 - else sMCU_OK_ClrVal(); - if(led0x01 == TRUE) sCom_In_NegVal(); //0x01 - else sCom_In_ClrVal(); - if(led0x02 == TRUE) sPC_OK_NegVal(); //0x02 - else sPC_OK_ClrVal(); - tLed = 0; - } - - - //Bucle para 100 ms de leds - if(tMotor != 2-1) - { - tMotor++; - } - else - { - - } - - - - /*TRANSMISION DE DATA*/ - - //Transmitir DATA - - //envioData(); - - - -} - -/* -** =================================================================== -** Event : SerialCom_OnRxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnRxChar(void) -{ - -} - -/* -** =================================================================== -** Event : SerialCom_OnTxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : RESET_INTERRUPT_OnInterrupt (module Events) -** -** Component : RESET_INTERRUPT [ExtInt] -** Description : -** This event is called when an active signal edge/level has -** occurred. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void RESET_INTERRUPT_OnInterrupt(void) -{ - - -} - -/* -** =================================================================== -** Event : ADC_OnEnd (module Events) -** -** Component : ADC [ADC] -** Description : -** This event is called after the measurement (which consists -** of <1 or more conversions>) is/are finished. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void ADC_OnEnd(void) -{ - /* Write your code here ... */ -} - - -/* -** =================================================================== -** Event : SerialCom_OnFullRxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called when the input buffer is full; -** i.e. after reception of the last character -** that was successfully placed into input buffer. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFullRxBuf(void) -{ - (void)SerialCom_RecvBlock(&dataIn,SIZEBUFFERIN,&err); - if(dataIn[9] == 0xFF) - { - - } -} - -/* -** =================================================================== -** Event : SerialCom_OnFreeTxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after the last character in output -** buffer is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFreeTxBuf(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnError (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called when a channel error (not the error -** returned by a given method) occurs. The errors can be read -** using method. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnError(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnRxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnRxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnTxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* END Events */ - -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/60ebe4a983c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/60ebe4a983c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/60ebe4a983c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/90a3b83e6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/90a3b83e6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/90a3b83e6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0b720085ec400151c37d9c83b392de4 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0b720085ec400151c37d9c83b392de4 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0b720085ec400151c37d9c83b392de4 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0cee37a35c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0cee37a35c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/c0cee37a35c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/e015dbcc7fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/e015dbcc7fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/29/e015dbcc7fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/40d873c639c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/40d873c639c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/40d873c639c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/40df27b840c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/40df27b840c4001515648e1660054a1a deleted file mode 100644 index 8285d24..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/40df27b840c4001515648e1660054a1a +++ /dev/null @@ -1,323 +0,0 @@ -/* ################################################################### -** Filename : Events.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Component : Events -** Version : Driver 01.02 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** This is user's event module. -** Put your event handler code here. -** Settings : -** Contents : -** No public methods -** -** ###################################################################*/ -/*! -** @file Events.c -** @version 01.02 -** @brief -** This is user's event module. -** Put your event handler code here. -*/ -/*! -** @addtogroup Events_module Events module documentation -** @{ -*/ -/* MODULE Events */ - -#include "Cpu.h" -#include "Events.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -byte err = 0; -byte data[27]; -byte data2[2]; -byte dataTest[14]; -byte dataIn[SIZEBUFFERIN]; -byte in; - -/* - * Variables - */ -bool led0x00 = FALSE; //0x00 sMCU_OK Led -bool led0x01 = FALSE; //0x01 sCom_In Led -bool led0x02 = FALSE; //0x02 sPC_OK Led -bool led0x03 = FALSE; //0x03 -bool led0x04 = FALSE; //0x04 -bool led0x05 = FALSE; //0x05 -bool led0x06 = FALSE; //0x06 -bool led0x07 = FALSE; //0x07 - -byte SerialIn; -wordbyte wordIn; -byte wordInByte[2]; -word error; -byte STATUS_PC; -//Tiempo -byte tLed = 0x00; -byte tMotor = 0x00; - -/* -** =================================================================== -** Event : Aux_Int_OnInterrupt (module Events) -** -** Component : Aux_Int [TimerInt] -** Description : -** When a timer interrupt occurs this event is called (only -** when the component is enabled - and the events are -** enabled - ). This event is enabled only if a -** is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ - -//Resolucion de 10 ms -void Aux_Int_OnInterrupt(void) -{ - - //Bucle para 100 ms de leds - if(tLed != 10-1) - { - tLed++; - } - else - { - //Control de leds de status - if(led0x00 == TRUE) sMCU_OK_NegVal(); //0x00 - else sMCU_OK_ClrVal(); - if(led0x01 == TRUE) sCom_In_NegVal(); //0x01 - else sCom_In_ClrVal(); - if(led0x02 == TRUE) sPC_OK_NegVal(); //0x02 - else sPC_OK_ClrVal(); - tLed = 0; - } - - - //Bucle para 100 ms de leds - if(tMotor != 2-1) - { - tMotor++; - } - else - { - - } - - - - /*TRANSMISION DE DATA*/ - - //Transmitir DATA - - envioData(); - - - -} - -/* -** =================================================================== -** Event : SerialCom_OnRxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnRxChar(void) -{ - -} - -/* -** =================================================================== -** Event : SerialCom_OnTxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : RESET_INTERRUPT_OnInterrupt (module Events) -** -** Component : RESET_INTERRUPT [ExtInt] -** Description : -** This event is called when an active signal edge/level has -** occurred. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void RESET_INTERRUPT_OnInterrupt(void) -{ - - -} - -/* -** =================================================================== -** Event : ADC_OnEnd (module Events) -** -** Component : ADC [ADC] -** Description : -** This event is called after the measurement (which consists -** of <1 or more conversions>) is/are finished. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void ADC_OnEnd(void) -{ - /* Write your code here ... */ -} - - -/* -** =================================================================== -** Event : SerialCom_OnFullRxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called when the input buffer is full; -** i.e. after reception of the last character -** that was successfully placed into input buffer. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFullRxBuf(void) -{ - (void)SerialCom_RecvBlock(&dataIn,SIZEBUFFERIN,&err); - (void)SerialCom_ClearRxBuf(); - if(dataIn[9] == 0xFF) - { - //Set the motor speed - setMotorSpeed256(dataIn[0],1); - setMotorSpeed256(dataIn[1],2); - setMotorSpeed256(dataIn[2],3); - setMotorSpeed256(dataIn[3],4); - - //Servo Pos - - servoPanAngle(dataIn[4]);//Resolucin de 0 - 255 - servoTiltAngle(dataIn[5]);//Resolucin de 0 - 255 - - //Set Light bright - (void)LedLight1_SetRatio8(dataIn[6]); - (void)LedLight2_SetRatio8(dataIn[7]); - - STATUS_PC = dataIn[8]; - } - -} - -/* -** =================================================================== -** Event : SerialCom_OnFreeTxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after the last character in output -** buffer is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFreeTxBuf(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnError (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called when a channel error (not the error -** returned by a given method) occurs. The errors can be read -** using method. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnError(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnRxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnRxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnTxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* END Events */ - -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/50e2bac483c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/50e2bac483c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/50e2bac483c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/602d9dc36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/602d9dc36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 688ee08..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/602d9dc36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,42 +0,0 @@ -Sources/main_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\main.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\Events.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M1_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M2_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M3_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M4_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_PanCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_TiltCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sMCU_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sPC_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sCom_In.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Aux_Int.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\SerialCom.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\RESET_INTERRUPT.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\ADC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\CS1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\I2C.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_Wire.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\xSub.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\OneWire.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/70a03f5f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/70a03f5f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/70a03f5f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/802843bc6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/802843bc6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/802843bc6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/b03a00c963c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/b03a00c963c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/b03a00c963c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/c014b48136c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/c014b48136c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/c014b48136c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/e07779dc38c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/e07779dc38c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2a/e07779dc38c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/2032afd23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/2032afd23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/2032afd23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20a442c943c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20a442c943c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20a442c943c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/30dd81c36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/30dd81c36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/30dd81c36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/50fdf7c863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/50fdf7c863c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/50fdf7c863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/c08f8ac36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/c08f8ac36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/c08f8ac36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/c0cfc1d23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/c0cfc1d23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 17c561c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/c0cfc1d23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################ -# These macros are used by makefiles and argument files. -# When a space is included in the path and quotes (") cannot be used, -# a _ESCAPE version of the macro is added that escapes the space with backslash (\). -################################################################################ - -export HC08ToolsEnv=$(CWInstallLocationEnv)/MCU/prog -export GNU_Make_Install_DirEnv=$(CWInstallLocationEnv)/gnu/bin -export ProjDirPath=C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU Firmware/X-Sub MCU Firmware -export CWInstallLocationEnv=C:/Freescale/CW MCU v10.6 -export MCUToolsBaseDirEnv=$(CWInstallLocationEnv)/MCU -export CF_ToolsDirEnv=$(CWInstallLocationEnv)/MCU/ColdFire_Tools/Command_Line_Tools diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/d03cf8bb6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/d03cf8bb6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/d03cf8bb6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/e0b3cc1138c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/e0b3cc1138c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/e0b3cc1138c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/f049b3d040c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/f049b3d040c4001515648e1660054a1a deleted file mode 100644 index 917e801..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2b/f049b3d040c4001515648e1660054a1a +++ /dev/null @@ -1,324 +0,0 @@ -/* ################################################################### -** Filename : Events.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Component : Events -** Version : Driver 01.02 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** This is user's event module. -** Put your event handler code here. -** Settings : -** Contents : -** No public methods -** -** ###################################################################*/ -/*! -** @file Events.c -** @version 01.02 -** @brief -** This is user's event module. -** Put your event handler code here. -*/ -/*! -** @addtogroup Events_module Events module documentation -** @{ -*/ -/* MODULE Events */ - -#include "Cpu.h" -#include "Events.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -byte err = 0; -byte data[27]; -byte data2[2]; -byte dataTest[14]; -byte dataIn[10]; -byte in; - -/* - * Variables - */ -bool led0x00 = FALSE; //0x00 sMCU_OK Led -bool led0x01 = FALSE; //0x01 sCom_In Led -bool led0x02 = FALSE; //0x02 sPC_OK Led -bool led0x03 = FALSE; //0x03 -bool led0x04 = FALSE; //0x04 -bool led0x05 = FALSE; //0x05 -bool led0x06 = FALSE; //0x06 -bool led0x07 = FALSE; //0x07 - -byte SerialIn; -wordbyte wordIn; -byte wordInByte[2]; -word error; -byte STATUS_PC; -//Tiempo -byte tLed = 0x00; -byte tMotor = 0x00; - -/* -** =================================================================== -** Event : Aux_Int_OnInterrupt (module Events) -** -** Component : Aux_Int [TimerInt] -** Description : -** When a timer interrupt occurs this event is called (only -** when the component is enabled - and the events are -** enabled - ). This event is enabled only if a -** is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ - -//Resolucion de 10 ms -void Aux_Int_OnInterrupt(void) -{ - - //Bucle para 100 ms de leds - if(tLed != 10-1) - { - tLed++; - } - else - { - //Control de leds de status - if(led0x00 == TRUE) sMCU_OK_NegVal(); //0x00 - else sMCU_OK_ClrVal(); - if(led0x01 == TRUE) sCom_In_NegVal(); //0x01 - else sCom_In_ClrVal(); - if(led0x02 == TRUE) sPC_OK_NegVal(); //0x02 - else sPC_OK_ClrVal(); - tLed = 0; - } - - - //Bucle para 100 ms de leds - if(tMotor != 2-1) - { - tMotor++; - } - else - { - - } - - - - /*TRANSMISION DE DATA*/ - - //Transmitir DATA - - envioData(); - - - -} - -/* -** =================================================================== -** Event : SerialCom_OnRxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnRxChar(void) -{ - -} - -/* -** =================================================================== -** Event : SerialCom_OnTxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : RESET_INTERRUPT_OnInterrupt (module Events) -** -** Component : RESET_INTERRUPT [ExtInt] -** Description : -** This event is called when an active signal edge/level has -** occurred. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void RESET_INTERRUPT_OnInterrupt(void) -{ - - -} - -/* -** =================================================================== -** Event : ADC_OnEnd (module Events) -** -** Component : ADC [ADC] -** Description : -** This event is called after the measurement (which consists -** of <1 or more conversions>) is/are finished. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void ADC_OnEnd(void) -{ - /* Write your code here ... */ -} - - -/* -** =================================================================== -** Event : SerialCom_OnFullRxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called when the input buffer is full; -** i.e. after reception of the last character -** that was successfully placed into input buffer. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFullRxBuf(void) -{ - - (void)SerialCom_RecvBlock(&dataIn,SIZEBUFFERIN,&err); - (void)SerialCom_ClearRxBuf(); - if(dataIn[9] == 0xFF) - { - //Set the motor speed - setMotorSpeed256(dataIn[0],1); - setMotorSpeed256(dataIn[1],2); - setMotorSpeed256(dataIn[2],3); - setMotorSpeed256(dataIn[3],4); - - //Servo Pos - - servoPanAngle(dataIn[4]);//Resolucin de 0 - 255 - servoTiltAngle(dataIn[5]);//Resolucin de 0 - 255 - - //Set Light bright - (void)LedLight1_SetRatio8(dataIn[6]); - (void)LedLight2_SetRatio8(dataIn[7]); - - STATUS_PC = dataIn[8]; - } - -} - -/* -** =================================================================== -** Event : SerialCom_OnFreeTxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after the last character in output -** buffer is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFreeTxBuf(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnError (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called when a channel error (not the error -** returned by a given method) occurs. The errors can be read -** using method. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnError(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnRxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnRxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnTxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* END Events */ - -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/008cfb846fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/008cfb846fc40015180fe241a6b5bfe5 deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/008cfb846fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/00b5f06863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/00b5f06863c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/00b5f06863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/307be25035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/307be25035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/307be25035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30cccadc38c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30cccadc38c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30cccadc38c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40cb186837c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40cb186837c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40cb186837c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/60873bbc6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/60873bbc6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/60873bbc6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/70fe0f1238c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/70fe0f1238c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/70fe0f1238c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/8015debf80c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/8015debf80c8001513b8f2fec7d3ea00 deleted file mode 100644 index 17c561c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/8015debf80c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################ -# These macros are used by makefiles and argument files. -# When a space is included in the path and quotes (") cannot be used, -# a _ESCAPE version of the macro is added that escapes the space with backslash (\). -################################################################################ - -export HC08ToolsEnv=$(CWInstallLocationEnv)/MCU/prog -export GNU_Make_Install_DirEnv=$(CWInstallLocationEnv)/gnu/bin -export ProjDirPath=C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU Firmware/X-Sub MCU Firmware -export CWInstallLocationEnv=C:/Freescale/CW MCU v10.6 -export MCUToolsBaseDirEnv=$(CWInstallLocationEnv)/MCU -export CF_ToolsDirEnv=$(CWInstallLocationEnv)/MCU/ColdFire_Tools/Command_Line_Tools diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/8075b6c483c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/8075b6c483c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/8075b6c483c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/80cb6a6a5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/80cb6a6a5bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/80cb6a6a5bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/90d8fb6863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/90d8fb6863c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2c/90d8fb6863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/40c2f36863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/40c2f36863c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/40c2f36863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/708f48d36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/708f48d36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 17c561c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/708f48d36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################ -# These macros are used by makefiles and argument files. -# When a space is included in the path and quotes (") cannot be used, -# a _ESCAPE version of the macro is added that escapes the space with backslash (\). -################################################################################ - -export HC08ToolsEnv=$(CWInstallLocationEnv)/MCU/prog -export GNU_Make_Install_DirEnv=$(CWInstallLocationEnv)/gnu/bin -export ProjDirPath=C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU Firmware/X-Sub MCU Firmware -export CWInstallLocationEnv=C:/Freescale/CW MCU v10.6 -export MCUToolsBaseDirEnv=$(CWInstallLocationEnv)/MCU -export CF_ToolsDirEnv=$(CWInstallLocationEnv)/MCU/ColdFire_Tools/Command_Line_Tools diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/909f09795bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/909f09795bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/909f09795bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b015107c43c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b015107c43c4001515648e1660054a1a deleted file mode 100644 index 399ea31..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/b015107c43c4001515648e1660054a1a +++ /dev/null @@ -1,324 +0,0 @@ -/* ################################################################### -** Filename : Events.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Component : Events -** Version : Driver 01.02 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** This is user's event module. -** Put your event handler code here. -** Settings : -** Contents : -** No public methods -** -** ###################################################################*/ -/*! -** @file Events.c -** @version 01.02 -** @brief -** This is user's event module. -** Put your event handler code here. -*/ -/*! -** @addtogroup Events_module Events module documentation -** @{ -*/ -/* MODULE Events */ - -#include "Cpu.h" -#include "Events.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -byte err = 0; -byte data[27]; -byte data2[2]; -byte dataTest[14]; -byte dataIn[10]; -byte in; - -/* - * Variables - */ -bool led0x00 = FALSE; //0x00 sMCU_OK Led -bool led0x01 = FALSE; //0x01 sCom_In Led -bool led0x02 = FALSE; //0x02 sPC_OK Led -bool led0x03 = FALSE; //0x03 -bool led0x04 = FALSE; //0x04 -bool led0x05 = FALSE; //0x05 -bool led0x06 = FALSE; //0x06 -bool led0x07 = FALSE; //0x07 - -byte SerialIn; -wordbyte wordIn; -byte wordInByte[2]; -word error; -byte STATUS_PC; -//Tiempo -byte tLed = 0x00; -byte tMotor = 0x00; - -/* -** =================================================================== -** Event : Aux_Int_OnInterrupt (module Events) -** -** Component : Aux_Int [TimerInt] -** Description : -** When a timer interrupt occurs this event is called (only -** when the component is enabled - and the events are -** enabled - ). This event is enabled only if a -** is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ - -//Resolucion de 10 ms -void Aux_Int_OnInterrupt(void) -{ - - //Bucle para 100 ms de leds - if(tLed != 10-1) - { - tLed++; - } - else - { - //Control de leds de status - if(led0x00 == TRUE) sMCU_OK_NegVal(); //0x00 - else sMCU_OK_ClrVal(); - if(led0x01 == TRUE) sCom_In_NegVal(); //0x01 - else sCom_In_ClrVal(); - if(led0x02 == TRUE) sPC_OK_NegVal(); //0x02 - else sPC_OK_ClrVal(); - tLed = 0; - } - - - //Bucle para 100 ms de leds - if(tMotor != 2-1) - { - tMotor++; - } - else - { - - } - - - - /*TRANSMISION DE DATA*/ - - //Transmitir DATA - - envioData(); - - - -} - -/* -** =================================================================== -** Event : SerialCom_OnRxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnRxChar(void) -{ - -} - -/* -** =================================================================== -** Event : SerialCom_OnTxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : RESET_INTERRUPT_OnInterrupt (module Events) -** -** Component : RESET_INTERRUPT [ExtInt] -** Description : -** This event is called when an active signal edge/level has -** occurred. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void RESET_INTERRUPT_OnInterrupt(void) -{ - - -} - -/* -** =================================================================== -** Event : ADC_OnEnd (module Events) -** -** Component : ADC [ADC] -** Description : -** This event is called after the measurement (which consists -** of <1 or more conversions>) is/are finished. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void ADC_OnEnd(void) -{ - /* Write your code here ... */ -} - - -/* -** =================================================================== -** Event : SerialCom_OnFullRxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called when the input buffer is full; -** i.e. after reception of the last character -** that was successfully placed into input buffer. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFullRxBuf(void) -{ - SerialCom_TComData dataTest22[10]; - (void)SerialCom_RecvBlock(&dataTest22,10,&err); - (void)SerialCom_ClearRxBuf(); - if(dataIn[9] == 0xFF) - { - //Set the motor speed - setMotorSpeed256(dataIn[0],1); - setMotorSpeed256(dataIn[1],2); - setMotorSpeed256(dataIn[2],3); - setMotorSpeed256(dataIn[3],4); - - //Servo Pos - - servoPanAngle(dataIn[4]);//Resolucin de 0 - 255 - servoTiltAngle(dataIn[5]);//Resolucin de 0 - 255 - - //Set Light bright - (void)LedLight1_SetRatio8(dataIn[6]); - (void)LedLight2_SetRatio8(dataIn[7]); - - STATUS_PC = dataIn[8]; - } - -} - -/* -** =================================================================== -** Event : SerialCom_OnFreeTxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after the last character in output -** buffer is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFreeTxBuf(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnError (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called when a channel error (not the error -** returned by a given method) occurs. The errors can be read -** using method. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnError(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnRxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnRxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnTxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* END Events */ - -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/c08b2d6837c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/c08b2d6837c8001513b8f2fec7d3ea00 deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/c08b2d6837c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/d01cb5807cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/d01cb5807cc400151f08d780d899b0c2 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/d0f5fb5d66c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/d0f5fb5d66c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/d0f5fb5d66c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/f090f4785bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/f090f4785bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2d/f090f4785bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/209893a7d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/209893a7d2c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/209893a7d2c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/30d8ae9936c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/30d8ae9936c8001513b8f2fec7d3ea00 deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/30d8ae9936c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/30eaea846fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/30eaea846fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/30eaea846fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/5038db7c3dc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/5038db7c3dc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/5038db7c3dc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/d00e29cd7fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/d00e29cd7fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2e/d00e29cd7fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/2017f8d13fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/2017f8d13fc8001513b8f2fec7d3ea00 deleted file mode 100644 index c0b135f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/2017f8d13fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,3131 +0,0 @@ - - - X-Sub MCU Firmware - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU Firmware\X-Sub MCU Firmware\ - main - Sources\ - ..\Generated_Code\ - Documentation\ - - - MCF51QE128CLK - - false - false - - PE_Types - PE_Error - PE_Const - IO_Map - PE_Timer - - 1196053978 - -1 - -1 - 1196053978 - -1 - -1 - 1196053978 - -1 - -1 - 1196053978 - 1196053978 - -1 - 1196053978 - 1196053978 - -1 - - Project_Settings\Linker_Files\ProcessorExpert.lcf - Generated_Code\Vectors.c - - 1196525144 - 4 - 4 - - - Events - - - S_Wire_OnError - S_Wire_OnRxChar - S_Wire_OnTxChar - ADC_OnEnd - RESET_INTERRUPT_OnInterrupt - SerialCom_OnRxChar - SerialCom_OnTxChar - SerialCom_OnFullRxBuf - SerialCom_OnFreeTxBuf - Aux_Int_OnInterrupt - - - ADC - Aux_Int - Cpu - CS1 - Events - I2C - IO_Map - LedLight1 - LedLight2 - M1_ESC - M2_ESC - M3_ESC - M4_ESC - PE_Const - PE_Error - PE_Timer - PE_Types - PresenciaAgua1 - PresenciaAgua2 - RESET_INTERRUPT - S_PanCamera - S_TiltCamera - S_Wire - sCom_In - SerialCom - sMCU_OK - sPC_OK - - - - M1_ESC - M2_ESC - M3_ESC - M4_ESC - S_PanCamera - S_TiltCamera - sMCU_OK - sCom_In - sPC_OK - Aux_Int - SerialCom - RESET_INTERRUPT - ADC - LedLight1 - LedLight2 - CS1 - I2C - PresenciaAgua2 - PresenciaAgua1 - S_Wire - - - Documentation\X-Sub MCU Firmware_SIGNALS.txt - CodeWarriorColdFireV1 - 78 - - - true - Cpu - 01.014 - 01.12 - Events - 1196053978 - 1211788931 - -1 - 19 - false - false - false - false - true - true - false - false - false - false - false - false - false - false - false - false - false - false - true - 8 - 0 - Cpu_OnAddrRelatedEXP - interrupts disabled - 0 - Cpu_OnInstrRelatedEXP - interrupts disabled - 0 - Cpu_OnTrapEXP - interrupts disabled - 1 - Cpu_OnUnsupportedInstEXP - interrupts disabled - 0 - Cpu_OnSwINT - interrupts disabled - 1 - Cpu_OnReset - interrupts disabled - 0 - Cpu_OnLvdINT - interrupts disabled - 1 - Cpu_OnLvwINT - interrupts disabled - isr_default - _startup - false - false - false - 2 - Project_Settings\Linker_Files\ProcessorExpert.lcf - Generated_Code\Vectors.c - - - true - M1_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M1_ESC_BeforeNewSpeed - interrupts disabled - 0 - M1_ESC_AfterNewSpeed - interrupts disabled - 0 - M1_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 338 - - 0 - - - true - M2_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M2_ESC_BeforeNewSpeed - interrupts disabled - 0 - M2_ESC_AfterNewSpeed - interrupts disabled - 0 - M2_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - M3_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M3_ESC_BeforeNewSpeed - interrupts disabled - 0 - M3_ESC_AfterNewSpeed - interrupts disabled - 0 - M3_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - M4_ESC - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - M4_ESC_BeforeNewSpeed - interrupts disabled - 0 - M4_ESC_AfterNewSpeed - interrupts disabled - 0 - M4_ESC_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 338 - - 0 - - - true - S_PanCamera - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - S_PanCamera_BeforeNewSpeed - interrupts disabled - 0 - S_PanCamera_AfterNewSpeed - interrupts disabled - 0 - S_PanCamera_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - S_TiltCamera - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - S_TiltCamera_BeforeNewSpeed - interrupts disabled - 0 - S_TiltCamera_AfterNewSpeed - interrupts disabled - 0 - S_TiltCamera_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - true - sMCU_OK - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - true - true - true - true - false - 0 - false - false - false - 10 - - GetVal - method - Header - 103 - 123 - - - PutVal - method - Header - 124 - 138 - - - ClrVal - method - Header - 139 - 151 - - - SetVal - method - Header - 152 - 164 - - - NegVal - method - Header - 165 - 177 - - - GetVal - method - Code - 101 - 123 - - - PutVal - method - Code - 124 - 145 - - - ClrVal - method - Code - 146 - 160 - - - SetVal - method - Code - 161 - 175 - - - NegVal - method - Code - 176 - 190 - - 0 - - - true - sCom_In - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - true - true - true - true - false - 0 - false - false - false - 10 - - GetVal - method - Header - 103 - 123 - - - PutVal - method - Header - 124 - 138 - - - ClrVal - method - Header - 139 - 151 - - - SetVal - method - Header - 152 - 164 - - - NegVal - method - Header - 165 - 177 - - - GetVal - method - Code - 101 - 123 - - - PutVal - method - Code - 124 - 145 - - - ClrVal - method - Code - 146 - 160 - - - SetVal - method - Code - 161 - 175 - - - NegVal - method - Code - 176 - 190 - - 0 - - - true - sPC_OK - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - true - true - true - true - false - 0 - false - false - false - 10 - - GetVal - method - Header - 103 - 123 - - - PutVal - method - Header - 124 - 138 - - - ClrVal - method - Header - 139 - 151 - - - SetVal - method - Header - 152 - 164 - - - NegVal - method - Header - 165 - 177 - - - GetVal - method - Code - 101 - 123 - - - PutVal - method - Code - 124 - 145 - - - ClrVal - method - Code - 146 - 160 - - - SetVal - method - Code - 161 - 175 - - - NegVal - method - Code - 176 - 190 - - 0 - - - true - Aux_Int - 02.161 - 01.23 - Events - 1196142058 - 1196142058 - -1 - 14 - true - true - false - false - false - false - false - false - false - false - false - false - false - false - 3 - 0 - Aux_Int_BeforeNewSpeed - interrupts disabled - 0 - Aux_Int_AfterNewSpeed - interrupts disabled - 2 - Aux_Int_OnInterrupt - same as interrupt - false - false - false - 10 - - Enable - method - Header - 110 - 126 - - - Disable - method - Header - 127 - 142 - - - Interrupt - internal_method - Header - 143 - 154 - - - Init - internal_method - Header - 155 - 167 - - - HWEnDi - internal_method_declaration - Code - 107 - 119 - - - HWEnDi - internal_method - Code - 123 - 144 - - - Enable - method - Code - 145 - 167 - - - Disable - method - Code - 168 - 190 - - - Init - internal_method - Code - 191 - 211 - - - Interrupt - internal_method - Code - 212 - 230 - - 0 - - - true - SerialCom - 02.611 - 01.33 - Events - 1211782027 - 1211782027 - -1 - 30 - true - true - false - false - true - true - true - true - true - true - false - true - false - true - false - false - false - false - false - false - false - false - false - false - false - false - false - false - false - false - 12 - 0 - SerialCom_BeforeNewSpeed - interrupts disabled - 0 - SerialCom_AfterNewSpeed - interrupts disabled - 1 - SerialCom_OnError - same as interrupt - 3 - SerialCom_OnRxChar - same as interrupt - 1 - SerialCom_OnRxCharExt - same as interrupt - 3 - SerialCom_OnTxChar - same as interrupt - 3 - SerialCom_OnFullRxBuf - same as interrupt - 3 - SerialCom_OnFreeTxBuf - same as interrupt - 0 - SerialCom_OnBreak - same as interrupt - 1 - SerialCom_OnIdle - same as interrupt - 1 - SerialCom_OnTxComplete - same as interrupt - 0 - SerialCom_OnRxActiveEdge - same as interrupt - false - false - false - 29 - - Enable - method - Header - 155 - 171 - - - Disable - method - Header - 172 - 187 - - - RecvChar - method - Header - 188 - 221 - - - SendChar - method - Header - 222 - 245 - - - RecvBlock - method - Header - 246 - 279 - - - SendBlock - method - Header - 280 - 304 - - - ClearRxBuf - method - Header - 305 - 321 - - - ClearTxBuf - method - Header - 322 - 339 - - - GetCharsInRxBuf - method - Header - 340 - 354 - - - GetCharsInTxBuf - method - Header - 355 - 370 - - - InterruptRx - internal_method - Header - 371 - 382 - - - InterruptTx - internal_method - Header - 383 - 394 - - - InterruptError - internal_method - Header - 395 - 406 - - - InterruptCs - internal_method - Header - 407 - 407 - - - Init - internal_method - Header - 408 - 420 - - - Enable - method - Code - 147 - 177 - - - Disable - method - Code - 178 - 204 - - - RecvChar - method - Code - 205 - 256 - - - SendChar - method - Code - 257 - 298 - - - RecvBlock - method - Code - 299 - 354 - - - SendBlock - method - Code - 355 - 410 - - - ClearRxBuf - method - Code - 411 - 436 - - - ClearTxBuf - method - Code - 437 - 462 - - - GetCharsInRxBuf - method - Code - 463 - 480 - - - GetCharsInTxBuf - method - Code - 481 - 499 - - - InterruptRx - internal_method - Code - 500 - 541 - - - InterruptTx - internal_method - Code - 542 - 583 - - - InterruptError - internal_method - Code - 584 - 601 - - - Init - internal_method - Code - 602 - 638 - - 0 - - - true - RESET_INTERRUPT - 02.105 - 01.24 - Events - 1196053978 - 1196053978 - -1 - 4 - false - false - true - false - 1 - 2 - RESET_INTERRUPT_OnInterrupt - same as interrupt - false - false - false - 4 - - Interrupt - internal_method - Header - 105 - 116 - - - GetVal - method - Header - 117 - 131 - - - Interrupt - internal_method - Code - 96 - 111 - - - GetVal - method - Code - 112 - 129 - - 0 - - - true - ADC - 01.697 - 01.30 - Events - 1211789508 - 1211789508 - -1 - 19 - false - false - false - false - false - false - true - true - false - true - true - true - true - true - true - false - false - false - false - 3 - 0 - ADC_BeforeNewSpeed - interrupts disabled - 0 - ADC_AfterNewSpeed - interrupts disabled - 3 - ADC_OnEnd - same as interrupt - false - false - false - 24 - - Interrupt - internal_method - Header - 131 - 142 - - - HWEnDi - internal_method - Header - 143 - 155 - - - Measure - method - Header - 157 - 191 - - - MeasureChan - method - Header - 192 - 224 - - - GetValue - method - Header - 225 - 256 - - - GetChanValue - method - Header - 257 - 294 - - - GetValue8 - method - Header - 295 - 324 - - - GetChanValue8 - method - Header - 325 - 360 - - - GetValue16 - method - Header - 361 - 390 - - - GetChanValue16 - method - Header - 391 - 426 - - - Init - internal_method - Header - 427 - 439 - - - ClrSumV - internal_method_declaration - Code - 116 - 126 - - - Interrupt - internal_method - Code - 146 - 185 - - - ClrSumV - internal_method - Code - 186 - 205 - - - HWEnDi - internal_method - Code - 206 - 234 - - - Measure - method - Code - 235 - 280 - - - MeasureChan - method - Code - 281 - 328 - - - GetValue - method - Code - 329 - 372 - - - GetChanValue - method - Code - 373 - 420 - - - GetValue8 - method - Code - 421 - 462 - - - GetChanValue8 - method - Code - 463 - 508 - - - GetValue16 - method - Code - 509 - 550 - - - GetChanValue16 - method - Code - 551 - 596 - - - Init - internal_method - Code - 597 - 619 - - 0 - - - true - LedLight1 - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - LedLight1_BeforeNewSpeed - interrupts disabled - 0 - LedLight1_AfterNewSpeed - interrupts disabled - 0 - LedLight1_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 338 - - 0 - - - true - LedLight2 - 02.241 - 01.28 - Events - 1196053978 - 1196053978 - -1 - 15 - true - true - false - false - true - true - false - false - true - true - false - false - false - false - false - 3 - 0 - LedLight2_BeforeNewSpeed - interrupts disabled - 0 - LedLight2_AfterNewSpeed - interrupts disabled - 0 - LedLight2_OnEnd - same as interrupt - false - false - false - 16 - - Enable - method - Header - 117 - 133 - - - Disable - method - Header - 134 - 150 - - - SetRatio8 - method - Header - 151 - 174 - - - SetRatio16 - method - Header - 175 - 198 - - - SetDutyUS - method - Header - 199 - 220 - - - SetDutyMS - method - Header - 221 - 242 - - - Init - internal_method - Header - 243 - 255 - - - SetRatio - internal_method_declaration - Code - 111 - 122 - - - SetRatio - internal_method - Code - 126 - 145 - - - Enable - method - Code - 146 - 167 - - - Disable - method - Code - 168 - 189 - - - SetRatio8 - method - Code - 190 - 218 - - - SetRatio16 - method - Code - 219 - 247 - - - SetDutyUS - method - Code - 248 - 281 - - - SetDutyMS - method - Code - 282 - 315 - - - Init - internal_method - Code - 316 - 334 - - 0 - - - false - - ??.??? - ??.?? - - -1 - -1 - -1 - 1 - false - 2 - 1 - WDog1_BeforeNewSpeed - interrupts disabled - 1 - WDog1_AfterNewSpeed - interrupts disabled - false - false - false - 0 - 0 - - - true - CS1 - 01.006 - 01.00 - - 1196053978 - 1196053978 - -1 - 3 - true - true - true - 0 - false - false - false - 6 - - CriticalVariable - method - Header - 62 - 74 - - - EnterCritical - method - Header - 75 - 87 - - - ExitCritical - method - Header - 88 - 100 - - - CriticalVariable - method - Code - 42 - 57 - - - EnterCritical - method - Code - 58 - 73 - - - ExitCritical - method - Code - 74 - 89 - - 0 - - - true - I2C - 01.287 - 01.28 - Events - 1211198139 - 1211198139 - -1 - 21 - false - false - false - false - true - true - true - true - false - false - false - false - false - true - false - false - false - false - false - false - false - 16 - 0 - I2C_BeforeNewSpeed - interrupts disabled - 0 - I2C_AfterNewSpeed - interrupts disabled - 0 - I2C_OnReceiveData - same as interrupt - 0 - I2C_OnTransmitData - same as interrupt - 1 - I2C_OnByteTransfer - same as interrupt - 0 - I2C_OnReadReq - same as interrupt - 0 - I2C_OnWriteReq - same as interrupt - 0 - I2C_OnRxChar - same as interrupt - 0 - I2C_OnTxChar - same as interrupt - 0 - I2C_OnFreeTxBuf - same as interrupt - 0 - I2C_OnFullRxBuf - same as interrupt - 0 - I2C_OnArbitLost - same as interrupt - 0 - I2C_OnNACK - same as interrupt - 0 - I2C_OnError - same as interrupt - 0 - I2C_OnTxEmptyChar - same as interrupt - 0 - I2C_OnGeneralCall - same as interrupt - false - false - false - 14 - - SendChar - method - Header - 142 - 186 - - - RecvChar - method - Header - 187 - 235 - - - SendBlock - method - Header - 236 - 292 - - - RecvBlock - method - Header - 293 - 349 - - - SelectSlave - method - Header - 350 - 373 - - - Init - internal_method - Header - 374 - 386 - - - MainComm - internal_method - Code - 160 - 170 - - - MainComm - internal_method - Code - 171 - 267 - - - SendChar - method - Code - 269 - 320 - - - RecvChar - method - Code - 321 - 373 - - - SendBlock - method - Code - 374 - 451 - - - RecvBlock - method - Code - 452 - 529 - - - SelectSlave - method - Code - 530 - 560 - - - Init - internal_method - Code - 561 - 581 - - 0 - - - true - PresenciaAgua2 - 02.086 - 03.14 - - 1210866410 - 1210866410 - -1 - 10 - false - false - false - false - true - false - false - false - false - false - 0 - false - false - false - 2 - - GetVal - method - Header - 99 - 119 - - - GetVal - method - Code - 97 - 119 - - 0 - - - true - PresenciaAgua1 - 02.086 - 03.14 - - 1196053978 - 1196053978 - -1 - 10 - false - false - false - false - true - false - false - false - false - false - 0 - false - false - false - 2 - - GetVal - method - Header - 99 - 119 - - - GetVal - method - Code - 97 - 119 - - 0 - - - true - S_Wire - 02.611 - 01.33 - Events - 1196556517 - 1196556517 - -1 - 30 - false - false - false - false - true - true - false - false - false - false - false - true - false - true - true - false - false - false - false - false - false - false - false - false - false - false - false - false - false - false - 12 - 0 - S_Wire_BeforeNewSpeed - interrupts disabled - 0 - S_Wire_AfterNewSpeed - interrupts disabled - 3 - S_Wire_OnError - same as interrupt - 3 - S_Wire_OnRxChar - same as interrupt - 1 - S_Wire_OnRxCharExt - same as interrupt - 3 - S_Wire_OnTxChar - same as interrupt - 0 - S_Wire_OnFullRxBuf - same as interrupt - 0 - S_Wire_OnFreeTxBuf - same as interrupt - 0 - S_Wire_OnBreak - same as interrupt - 1 - S_Wire_OnIdle - same as interrupt - 1 - S_Wire_OnTxComplete - same as interrupt - 0 - S_Wire_OnRxActiveEdge - same as interrupt - false - false - false - 19 - - RecvChar - method - Header - 160 - 193 - - - SendChar - method - Header - 194 - 217 - - - GetCharsInRxBuf - method - Header - 218 - 231 - - - GetCharsInTxBuf - method - Header - 232 - 246 - - - SetBaudRateMode - method - Header - 247 - 278 - - - InterruptRx - internal_method - Header - 279 - 290 - - - InterruptTx - internal_method - Header - 291 - 302 - - - InterruptError - internal_method - Header - 303 - 314 - - - InterruptCs - internal_method - Header - 315 - 315 - - - Init - internal_method - Header - 316 - 328 - - - RecvChar - method - Code - 138 - 184 - - - SendChar - method - Code - 185 - 220 - - - GetCharsInRxBuf - method - Code - 221 - 237 - - - GetCharsInTxBuf - method - Code - 238 - 255 - - - InterruptRx - internal_method - Code - 256 - 294 - - - InterruptTx - internal_method - Code - 295 - 320 - - - InterruptError - internal_method - Code - 321 - 339 - - - SetBaudRateMode - method - Code - 340 - 384 - - - Init - internal_method - Code - 385 - 415 - - 0 - - - Drivers\ColdFireV1\BitIO.drv=1116866294 - Drivers\Common\ADCGetValue8.inc=1146382935 - Drivers\Common\ExternalInterruptSettings.inc=1116866294 - Drivers\Common\CheckRegBits8_Rst.prg=1116866294 - Drivers\Common\PE_TypesSettings.inc=1116866294 - Drivers\Common\PE_MisraRuleToDocumentation_HCS08.prg=1146382935 - Drivers\Common\TimerIntSettings.inc=1116866294 - Drivers\HCS08\TimerSubroutines_EnDisEvent.prg=1116866294 - Drivers\Common\AsynchroSerialClearRxBuf.inc=1116866294 - Drivers\Common\PE_TimerAbstract.inc=1116866294 - Drivers\ColdFireV1\ColdFireV1_Linker.prg=1116866294 - Drivers\Common\GenWatchDogResetCode.prg=1121555243 - Drivers\Common\TimerIntDisable.inc=1116866294 - Drivers\Common\Header.End=1116866294 - Drivers\Common\CopyrightUserC.inc=1116866294 - Drivers\Common\AsynchroSerialRecvBlock.inc=1116866294 - Drivers\Common\AsynchroSerialOnFreeTxBuf.inc=1116866294 - Drivers\Common\CommonRegInitialization_Flash.prg=1116866294 - Drivers\Common\CommonInitializationSequenceNames.inc=1116866294 - Drivers\HCS08\Init_PORT_HCS08.prg=1127381294 - Drivers\Common\CommonRegInit_WriteOnce.prg=1116866294 - Drivers\Common\InternalI2CSendChar.inc=1116866294 - Drivers\ColdFireV1\InitPin.prg=1116866294 - Drivers\Common\PWMSetRatio16.inc=1116866294 - Drivers\Common\CriticalSectionSettings.Inc=1190232498 - Drivers\Common\TimerIntEnable.inc=1116866294 - Drivers\HCS08\TimerSubroutines_All.prg=1116866294 - Drivers\Common\GenReg8BitsInitInfo.prg=1116866294 - Drivers\Common\ADCMeasureChan.inc=1146382935 - Drivers\Common\SetReg8_Rst.prg=1116866294 - Drivers\Common\PE_TimerLngHi3.inc=1116866294 - Drivers\HCS08\ADC.drv=1116866294 - Drivers\HCS08\MC9S08_LowLevelInit.prg=1116866294 - Drivers\Common\ADCGetValue16.inc=1146382935 - Drivers\Common\CommonInitialization_WriteOnce.prg=1116866294 - Drivers\Common\OneBitIOClrVal.inc=1116866294 - Drivers\Common\PWMSetDutyMS.inc=1116866294 - Drivers\AsynchroSerial.src=1122284138 - Drivers\HCS08\TimerSubroutines_Output.prg=1116866294 - Drivers\Common\SetRegBits8_Rst.prg=1116866294 - Drivers\Common\DefineISR.prg=1120303303 - Drivers\Common\GenReg16BitsInitInfo.prg=1116866294 - Drivers\Common\PE_ConstSettings.inc=1116866294 - Drivers\ColdFireV1\PE_Types.drv=1116866294 - Drivers\Common\PWMAbstract.inc=1116866294 - Drivers\Common\InitReg8.prg=1116866294 - Drivers\Common\CommonInitialization.prg=1116866294 - Drivers\Common\ExternalInterruptOnInterrupt.inc=1116866294 - Drivers\Common\ColdFireV1Settings.inc=1116866294 - Drivers\Common\InternalI2CRecvChar.inc=1116866294 - Drivers\Common\InternalI2CSettings.inc=1116866294 - Drivers\ColdFireV1\InternalPeripherals_IO.prg=1116866294 - Drivers\HCS08\CreateDataSection.prg=1116866294 - Drivers\sw\CpuDelay100US.prg=1116866294 - Drivers\Common\Header.end=1116866294 - Drivers\Common\OneBitIOPutVal.inc=1116866294 - Drivers\Common\AsynchroSerialGetCharsInRxBuf.inc=1116866294 - Drivers\Common\PE_TimerSettings.inc=1116866294 - Drivers\Common\InternalI2CAbstract.inc=1116866294 - Drivers\HCS08\PE_Timer.drv=1116866294 - Drivers\ColdFireV1\ColdFireV1.drv=1146382935 - Drivers\Common\CommonRegInit.prg=1116866294 - Drivers\Common\AsynchroSerialClearTxBuf.inc=1116866294 - Drivers\Common\ColdFireV1DisableInt.inc=1116866294 - Drivers\HCS08\ExternalInterrupt.drv=1116866294 - Drivers\Common\UsedOutPin.inc=1116866294 - Drivers\Common\AsynchroSerialOnError.inc=1116866294 - Drivers\Common\IO_MapAbstract.inc=1116866294 - Drivers\HC08\Common_HCx08\MC9x08_WhileSet.prg=1116866294 - Drivers\Common\AsynchroSerialSetBaudRateMode.inc=1116866294 - Drivers\Common\CriticalSectionExitCritical.Inc=1190232495 - Drivers\Common\DataHeader.inc=1116866294 - Drivers\ColdFireV1\IO_Map.drv=1116866294 - Drivers\Common\AsynchroSerialSendBlock.inc=1116866294 - Drivers\Common\BufIndxInc.prg=1116866294 - Drivers\Common\GeneralInternal.inc=1116866294 - Drivers\Common\GenReg32BitsInitInfo.prg=1116866294 - Drivers\Common\Header.c=1116866294 - Drivers\Common\Header.h=1116866294 - Drivers\sw\CriticalSection.drv=1190232498 - Drivers\Common\OneBitIOSettings.inc=1116866294 - Drivers\Common\ColdFireV1Delay100US.inc=1116866294 - Drivers\HC08\Common_HCx08\MC9x08_InitTrimCode.prg=1116866294 - Drivers\HCS08\AsynchroSerial.drv=1161912572 - Drivers\Common\InitReg8Block.prg=1116866294 - Drivers\Common\ErrorDefinitions.inc=1116866294 - Drivers\Common\PWMEnable.inc=1116866294 - Drivers\Common\PE_ConstAbstract.inc=1116866294 - Drivers\HC08\Common_HCx08\MC9x08_WhileNotValue.prg=1116866294 - Drivers\Common\Header.C=1116866294 - Drivers\Common\Header.H=1116866294 - Drivers\Common\GeneralMethod.inc=1116866294 - Drivers\Common\PE_MisraRuleToErrorCode.prg=1127381294 - Drivers\Common\PE_TimerLngHi2.inc=1116866294 - Drivers\Common\HeaderCopyright.inc=1146382935 - Drivers\HCS08\CreateIntSection.prg=1116866294 - Drivers\Common\PE_MisraRuleToDocumentation.prg=1116866294 - Drivers\HCS08\MC9S08_MemProtect.prg=1116866294 - Drivers\HCS08\InitPin.prg=1116866294 - Drivers\HCS08\MC9S08_DefineRegsAndBitsAccess.prg=1116866294 - Drivers\Common\ADCGetChanValue8.inc=1146382935 - Drivers\Common\ADCGetChanValue16.inc=1146382935 - Drivers\Common\AsynchroSerialSendChar.inc=1116866294 - Drivers\Common\PWMSetRatio8.inc=1116866294 - Drivers\ColdFireV1\MCF51QE128_80c.prg=1116866294 - Drivers\HCS08\TimerSubroutines_TmrAsSharedPresc.prg=1116866294 - Drivers\Common\ExternalInterruptInterrupt.inc=1116866294 - Drivers\Common\GeneralParametersNone.inc=1116866294 - Drivers\Common\ExternalInterruptGetVal.inc=1116866294 - Drivers\Common\ADCMeasure.inc=1146382935 - Drivers\HCS08\MC9S08_Constants.prg=1116866294 - Drivers\Common\GeneralInternalGlobal.inc=1116866294 - Drivers\Common\PE_MisraEnableRules.prg=1116866294 - Drivers\Common\GeneralInternalDescription.prg=1116866294 - Drivers\Common\PWMSettings.inc=1127381294 - Drivers\Common\InitReg8Enable.prg=1116866294 - Drivers\Common\GeneralParameters.inc=1116866294 - Drivers\Common\AsynchroSerialOnRxChar.inc=1116866294 - Drivers\Common\CriticalSectionEnterCritical.Inc=1190232497 - Drivers\TimerInt.src=1122284138 - Drivers\Common\PE_TimerConstants.inc=1116866294 - Drivers\Common\GenReg32InitInfo.prg=1116866294 - Drivers\Common\AsynchroSerialOnFullRxBuf.inc=1116866294 - Drivers\ColdFireV1.src=1121555243 - Drivers\Common\ADCGetChanValue.inc=1146382935 - Drivers\Common\ExternalInterruptAbstract.inc=1116866294 - Drivers\Common\DataHeader.End=1116866294 - Drivers\Common\UsedAsynchroPins.inc=1116866294 - Drivers\BitIO.src=1122284138 - Drivers\HC08\Common_HCx08\MC9x08_COPreset.prg=1116866294 - Drivers\Common\AsynchroSerialSettings.inc=1116866294 - Drivers\Common\OneBitIOAbstract.inc=1116866294 - Drivers\ADC.src=1122284138 - Drivers\ColdFireV1\PE_Error.drv=1116866294 - Drivers\ColdFireV1\ColdFireV1_InterruptVectorTable.prg=1116866294 - Drivers\Common\InternalI2CSendBlock.inc=1116866294 - Drivers\Common\InternalI2CSelectSlave.inc=1116866294 - Drivers\Common\EBGNSupport\StringLib.prg=1146382935 - Drivers\Common\GeneralDamage.inc=1116866294 - Drivers\HCS08\MC9S08_DefineCommonSymbols.prg=1116866294 - Drivers\Common\PWMSetDutyUS.inc=1116866294 - Drivers\Common\ADCGetValue.inc=1146382935 - Drivers\sw\CpuDelay.prg=1146382935 - Drivers\Common\PE_MisraDisableRules.prg=1116866294 - Drivers\HCS08\PWM.drv=1127381294 - Drivers\Common\HeaderGeneral.c=1116866294 - Drivers\Common\UsedPin.inc=1116866294 - Drivers\CriticalSection.src=1190232496 - Drivers\HCS08\MC9S08_EntryPointCode.prg=1116866294 - Drivers\ColdFireV1\PE_Const.drv=1116866294 - Drivers\Common\AsynchroSerialRecvChar.inc=1116866294 - Drivers\Common\OneBitIOSetVal.inc=1116866294 - Drivers\Common\AsynchroSerialAbstract.inc=1116866294 - Drivers\Common\PE_ErrorAbstract.inc=1116866294 - Drivers\ColdFireV1\Init_ExternalBus_COLDFIREV1.prg=1116866294 - Drivers\Common\PWMDisable.inc=1116866294 - Drivers\ExtInt.src=1122284138 - Drivers\Common\GeneralEvent.inc=1116866294 - Drivers\InternalI2C.src=1122284138 - Drivers\Common\AsynchroSerialEnable.inc=1116866294 - Drivers\HCS08\MC9S08_ICS_V3.prg=1116866294 - Drivers\Common\CommonRegInitialization.prg=1116866294 - Drivers\Common\SetReg8.prg=1127381294 - Drivers\HCS08\TimerSubroutines.prg=1116866294 - Drivers\Common\PE_MisraDisableRuleForSymbol.prg=1116866294 - Drivers\Common\OneBitIOGetVal.inc=1116866294 - Drivers\Common\PE_TimerMethods.inc=1116866294 - Drivers\Common\AsynchroSerialGetCharsInTxBuf.inc=1116866294 - Drivers\HC08\Common_HCx08\CommonSubroutines.prg=1116866294 - Drivers\HCS08\TimerInt.drv=1128496915 - Drivers\Common\ADCSettings.inc=1151162642 - Drivers\HCS08\MC9S08_SharedInterruptVectors.prg=1116866294 - Drivers\Common\SetReg16.prg=1127381294 - Drivers\HCS08\InternalI2C.drv=1128496915 - Drivers\HCS08\TimerSubroutines_PeriodicInt.prg=1116866294 - Drivers\Common\Header.doxy=1119169723 - Drivers\Common\PE_TypesAbstract.inc=1116866294 - Drivers\Common\AsynchroSerialDisable.inc=1116866294 - Drivers\Common\ToolChain_Settings.prg=1146382935 - Drivers\Common\CriticalSectionAbstract.Inc=1190232495 - Drivers\HC08\Common_HCx08\MC9x08_WhileNotSet.prg=1116866294 - Drivers\Common\TimerIntOnInterrupt.inc=1116866294 - Drivers\Common\ADCAbstract.inc=1116866294 - Drivers\HCS08\ADC_shared.drv=1116866294 - Drivers\Common\ColdFireV1Abstract.inc=1116866294 - Drivers\Common\InternalI2CRecvBlock.inc=1116866294 - Drivers\Common\InitReg8Speed.prg=1116866294 - Drivers\Common\AsynchroSerialOnTxChar.inc=1116866294 - Drivers\Common\ColdFireV1EnableInt.inc=1116866294 - Drivers\Common\CommonEnabling.prg=1116866294 - Drivers\Common\SetRegBits8.prg=1127381294 - Drivers\Common\Doxy_CollectRegInitInfo.prg=1116866294 - Drivers\Common\CriticalSectionCriticalVariable.Inc=1190232497 - Drivers\Common\OneBitIONegVal.inc=1116866294 - Drivers\Common\DeclareISR.prg=1146382935 - Drivers\Common\PE_TimerLngMul.inc=1116866294 - Drivers\Common\ADCOnEnd.inc=1116866294 - Drivers\HCS08\CreateCodeSection.prg=1116866294 - Drivers\Common\IO_MapSettings.inc=1116866294 - Drivers\Common\TimerIntAbstract.inc=1116866294 - Drivers\Common\GeneralReturnNothing.inc=1116866294 - Drivers\Common\UsedBaudModes.inc=1116866294 - Drivers\PWM.src=1122284138 - Drivers\Common\CommonInitialization_FLASH.prg=1116866294 - Drivers\ColdFireV1\MCF51QE128_80h.prg=1116866294 - - \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/606740cd7fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/606740cd7fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/606740cd7fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/70487ddc38c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/70487ddc38c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/70487ddc38c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/706aea5035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/706aea5035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/706aea5035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/80f01da580c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/80f01da580c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/80f01da580c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/80f3c1c13ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/80f3c1c13ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/80f3c1c13ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/9096cfbf80c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/9096cfbf80c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/9096cfbf80c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/a0dbb2d23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/a0dbb2d23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/a0dbb2d23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d073b1b459c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d073b1b459c4001515648e1660054a1a deleted file mode 100644 index 87e008e..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d073b1b459c4001515648e1660054a1a +++ /dev/null @@ -1,31 +0,0 @@ -================================================================= -THIS FILE WAS GENERATED BY "Processor Expert version 10.3 for Freescale Microcontrollers". -Project "X-Sub MCU Firmware", 2016-01-26, 11:04, # CodeGen: 88 -DO NOT MODIFY IT. -================================================================= - -================================================================= - SIGNAL LIST ------------------------------------------------------------------ -SIGNAL-NAME [DIR] => PIN-NAME [PIN-NUMBER] ------------------------------------------------------------------ -AD1 => PTF1_ADP11 [52] -AD2 => PTF2_ADP12 [46] -AD3 => PTF3_ADP13 [45] -AD4 => PTF4_ADP14 [38] -Press_In => PTF0_ADP10 [53] -================================================================= - - -================================================================= - PIN LIST ------------------------------------------------------------------ -PIN-NAME [PIN-NUM] => SIGNAL-NAME [DIRECTION] ------------------------------------------------------------------ -PTF0_ADP10 [53] => Press_In -PTF1_ADP11 [52] => AD1 -PTF2_ADP12 [46] => AD2 -PTF3_ADP13 [45] => AD3 -PTF4_ADP14 [38] => AD4 -================================================================= - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d07a41bc6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d07a41bc6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/2f/d07a41bc6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/104bb0c46fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/104bb0c46fc40015180fe241a6b5bfe5 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/10ad7cc36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/10ad7cc36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/10ad7cc36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/4086aec483c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/4086aec483c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/4086aec483c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/70a4edf682c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/70a4edf682c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/70a4edf682c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/70c549f05cc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/70c549f05cc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/70c549f05cc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/8090f3c863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/8090f3c863c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/8090f3c863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/9050b13e6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/9050b13e6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/9050b13e6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/90747bc36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/90747bc36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/90747bc36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/a068fac13ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/a068fac13ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/a068fac13ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/b095e85035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/b095e85035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/b095e85035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/c07cbad23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/c07cbad23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3/c07cbad23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/002c8bc36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/002c8bc36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 7d27360..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/002c8bc36fc40015180fe241a6b5bfe5 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/1007f35e37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/1007f35e37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/1007f35e37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/20590a1238c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/20590a1238c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/20590a1238c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/601e867a35c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/601e867a35c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/601e867a35c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/6020f1a983c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/6020f1a983c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/6020f1a983c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/707837d36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/707837d36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/707837d36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/90c6eb8136c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/90c6eb8136c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/90c6eb8136c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/b08e9bc843c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/b08e9bc843c8001513b8f2fec7d3ea00 deleted file mode 100644 index 3c64165..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/b08e9bc843c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Project_Settings/Startup_Code/startcf.c" \ - -C_SRCS += \ -../Project_Settings/Startup_Code/startcf.c \ - -OBJS += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -OBJS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.obj" \ - -C_DEPS += \ -./Project_Settings/Startup_Code/startcf_c.d \ - -OBJS_OS_FORMAT += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -C_DEPS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Project_Settings/Startup_Code/startcf_c.obj: ../Project_Settings/Startup_Code/startcf.c - @echo 'Building file: $<' - @echo 'Executing target #5 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Project_Settings/Startup_Code/startcf.args" -o "Project_Settings/Startup_Code/startcf_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Project_Settings/Startup_Code/%.d: ../Project_Settings/Startup_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/f01b9cc36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/f01b9cc36fc40015180fe241a6b5bfe5 deleted file mode 100644 index cdcc5e9..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/30/f01b9cc36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,42 +0,0 @@ -Sources/OneWire_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\OneWire.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\Events.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M1_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M2_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M3_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M4_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_PanCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_TiltCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sMCU_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sPC_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sCom_In.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Aux_Int.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\SerialCom.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\RESET_INTERRUPT.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\ADC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\CS1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\I2C.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_Wire.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\xSub.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\OneWire.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/104e3fbc37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/104e3fbc37c8001513b8f2fec7d3ea00 deleted file mode 100644 index c83beda..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/104e3fbc37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,89 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Sources/Events.c" \ -"../Sources/OneWire.c" \ -"../Sources/main.c" \ -"../Sources/xSub.c" \ - -C_SRCS += \ -../Sources/Events.c \ -../Sources/OneWire.c \ -../Sources/main.c \ -../Sources/xSub.c \ - -OBJS += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -OBJS_QUOTED += \ -"./Sources/Events_c.obj" \ -"./Sources/OneWire_c.obj" \ -"./Sources/main_c.obj" \ -"./Sources/xSub_c.obj" \ - -C_DEPS += \ -./Sources/Events_c.d \ -./Sources/OneWire_c.d \ -./Sources/main_c.d \ -./Sources/xSub_c.d \ - -OBJS_OS_FORMAT += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -C_DEPS_QUOTED += \ -"./Sources/Events_c.d" \ -"./Sources/OneWire_c.d" \ -"./Sources/main_c.d" \ -"./Sources/xSub_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Sources/Events_c.obj: ../Sources/Events.c - @echo 'Building file: $<' - @echo 'Executing target #1 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/Events.args" -o "Sources/Events_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/%.d: ../Sources/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Sources/OneWire_c.obj: ../Sources/OneWire.c - @echo 'Building file: $<' - @echo 'Executing target #2 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/OneWire.args" -o "Sources/OneWire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/main_c.obj: ../Sources/main.c - @echo 'Building file: $<' - @echo 'Executing target #3 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/main.args" -o "Sources/main_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/xSub_c.obj: ../Sources/xSub.c - @echo 'Building file: $<' - @echo 'Executing target #4 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/xSub.args" -o "Sources/xSub_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/308390c36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/308390c36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 43f5d8b..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/308390c36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,41 +0,0 @@ -Generated_Code/Vectors_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Vectors.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M1_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M2_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M3_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M4_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_PanCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_TiltCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sMCU_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sCom_In.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sPC_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Aux_Int.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\SerialCom.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\RESET_INTERRUPT.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\Events.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\ADC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\CS1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\I2C.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_Wire.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Project_Settings\Startup_Code\startcf.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/5038cbae5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/5038cbae5bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/5038cbae5bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/6025ef5035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/6025ef5035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/6025ef5035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/c089da6737c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/c089da6737c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/c089da6737c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/e089ec8136c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/e089ec8136c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/31/e089ec8136c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/206c61f05cc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/206c61f05cc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/206c61f05cc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/308d9ccf3ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/308d9ccf3ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/308d9ccf3ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/b071ffc13ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/b071ffc13ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/b071ffc13ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/c052a3c46fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/c052a3c46fc40015180fe241a6b5bfe5 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/d01892c843c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/d01892c843c8001513b8f2fec7d3ea00 deleted file mode 100644 index c83beda..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/d01892c843c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,89 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Sources/Events.c" \ -"../Sources/OneWire.c" \ -"../Sources/main.c" \ -"../Sources/xSub.c" \ - -C_SRCS += \ -../Sources/Events.c \ -../Sources/OneWire.c \ -../Sources/main.c \ -../Sources/xSub.c \ - -OBJS += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -OBJS_QUOTED += \ -"./Sources/Events_c.obj" \ -"./Sources/OneWire_c.obj" \ -"./Sources/main_c.obj" \ -"./Sources/xSub_c.obj" \ - -C_DEPS += \ -./Sources/Events_c.d \ -./Sources/OneWire_c.d \ -./Sources/main_c.d \ -./Sources/xSub_c.d \ - -OBJS_OS_FORMAT += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -C_DEPS_QUOTED += \ -"./Sources/Events_c.d" \ -"./Sources/OneWire_c.d" \ -"./Sources/main_c.d" \ -"./Sources/xSub_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Sources/Events_c.obj: ../Sources/Events.c - @echo 'Building file: $<' - @echo 'Executing target #1 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/Events.args" -o "Sources/Events_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/%.d: ../Sources/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Sources/OneWire_c.obj: ../Sources/OneWire.c - @echo 'Building file: $<' - @echo 'Executing target #2 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/OneWire.args" -o "Sources/OneWire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/main_c.obj: ../Sources/main.c - @echo 'Building file: $<' - @echo 'Executing target #3 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/main.args" -o "Sources/main_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/xSub_c.obj: ../Sources/xSub.c - @echo 'Building file: $<' - @echo 'Executing target #4 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/xSub.args" -o "Sources/xSub_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/e09bfc6863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/e09bfc6863c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/32/e09bfc6863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/00da28ac59c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/00da28ac59c4001515648e1660054a1a deleted file mode 100644 index cf0e9a7..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/00da28ac59c4001515648e1660054a1a +++ /dev/null @@ -1,325 +0,0 @@ -/* ################################################################### -** Filename : Events.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Component : Events -** Version : Driver 01.02 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** This is user's event module. -** Put your event handler code here. -** Settings : -** Contents : -** No public methods -** -** ###################################################################*/ -/*! -** @file Events.c -** @version 01.02 -** @brief -** This is user's event module. -** Put your event handler code here. -*/ -/*! -** @addtogroup Events_module Events module documentation -** @{ -*/ -/* MODULE Events */ - -#include "Cpu.h" -#include "Events.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -unsigned short err = 0; -byte data[27]; -byte data2[2]; -byte dataTest[14]; -byte dataIn[10]; -byte in; - -/* - * Variables - */ -bool led0x00 = FALSE; //0x00 sMCU_OK Led -bool led0x01 = FALSE; //0x01 sCom_In Led -bool led0x02 = FALSE; //0x02 sPC_OK Led -bool led0x03 = FALSE; //0x03 -bool led0x04 = FALSE; //0x04 -bool led0x05 = FALSE; //0x05 -bool led0x06 = FALSE; //0x06 -bool led0x07 = FALSE; //0x07 - -byte SerialIn; -wordbyte wordIn; -byte wordInByte[2]; -word error; -byte STATUS_PC; -//Tiempo -byte tLed = 0x00; -byte tMotor = 0x00; - -/* -** =================================================================== -** Event : Aux_Int_OnInterrupt (module Events) -** -** Component : Aux_Int [TimerInt] -** Description : -** When a timer interrupt occurs this event is called (only -** when the component is enabled - and the events are -** enabled - ). This event is enabled only if a -** is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ - -//Resolucion de 10 ms -void Aux_Int_OnInterrupt(void) -{ - - //Bucle para 100 ms de leds - if(tLed != 10-1) - { - tLed++; - } - else - { - //Control de leds de status - if(led0x00 == TRUE) sMCU_OK_NegVal(); //0x00 - else sMCU_OK_ClrVal(); - if(led0x01 == TRUE) sCom_In_NegVal(); //0x01 - else sCom_In_ClrVal(); - if(led0x02 == TRUE) sPC_OK_NegVal(); //0x02 - else sPC_OK_ClrVal(); - tLed = 0; - } - - - //Bucle para 100 ms de leds - if(tMotor != 2-1) - { - tMotor++; - } - else - { - - } - - - - /*TRANSMISION DE DATA*/ - - //Transmitir DATA - - envioData(); - - - -} - -/* -** =================================================================== -** Event : SerialCom_OnRxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnRxChar(void) -{ - -} - -/* -** =================================================================== -** Event : SerialCom_OnTxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : RESET_INTERRUPT_OnInterrupt (module Events) -** -** Component : RESET_INTERRUPT [ExtInt] -** Description : -** This event is called when an active signal edge/level has -** occurred. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void RESET_INTERRUPT_OnInterrupt(void) -{ - - -} - -/* -** =================================================================== -** Event : ADC_OnEnd (module Events) -** -** Component : ADC [ADC] -** Description : -** This event is called after the measurement (which consists -** of <1 or more conversions>) is/are finished. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void ADC_OnEnd(void) -{ - /* Write your code here ... */ -} - - -/* -** =================================================================== -** Event : SerialCom_OnFullRxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called when the input buffer is full; -** i.e. after reception of the last character -** that was successfully placed into input buffer. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFullRxBuf(void) -{ - sPC_OK_W(); - (void)SerialCom_RecvBlock(dataIn,10,&err); - (void)SerialCom_ClearRxBuf(); - if(dataIn[9] == 0xFF) - { - //Set the motor speed - setMotorSpeed256(dataIn[0],1); - setMotorSpeed256(dataIn[1],2); - setMotorSpeed256(dataIn[2],3); - setMotorSpeed256(dataIn[3],4); - - //Servo Pos - - servoPanAngle(dataIn[4]);//Resolucin de 0 - 255 - servoTiltAngle(dataIn[5]);//Resolucin de 0 - 255 - - //Set Light bright - (void)LedLight1_SetRatio8(dataIn[6]); - (void)LedLight2_SetRatio8(dataIn[7]); - - STATUS_PC = dataIn[8]; - } - sPC_OK_NW(); - -} - -/* -** =================================================================== -** Event : SerialCom_OnFreeTxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after the last character in output -** buffer is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFreeTxBuf(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnError (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called when a channel error (not the error -** returned by a given method) occurs. The errors can be read -** using method. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnError(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnRxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnRxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnTxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* END Events */ - -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/00daa0359cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/00daa0359cc6001511f8dea3160ea30e deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/00daa0359cc6001511f8dea3160ea30e +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/10353dbc6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/10353dbc6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/10353dbc6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/10a8a99936c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/10a8a99936c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/10a8a99936c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/50abe75035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/50abe75035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/50abe75035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/6082a9cb5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/6082a9cb5bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/6082a9cb5bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/700a9fe537c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/700a9fe537c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/700a9fe537c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/70f497d735c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/70f497d735c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/70f497d735c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/a02b3aea40c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/a02b3aea40c4001515648e1660054a1a deleted file mode 100644 index 917e801..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/a02b3aea40c4001515648e1660054a1a +++ /dev/null @@ -1,324 +0,0 @@ -/* ################################################################### -** Filename : Events.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Component : Events -** Version : Driver 01.02 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** This is user's event module. -** Put your event handler code here. -** Settings : -** Contents : -** No public methods -** -** ###################################################################*/ -/*! -** @file Events.c -** @version 01.02 -** @brief -** This is user's event module. -** Put your event handler code here. -*/ -/*! -** @addtogroup Events_module Events module documentation -** @{ -*/ -/* MODULE Events */ - -#include "Cpu.h" -#include "Events.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -byte err = 0; -byte data[27]; -byte data2[2]; -byte dataTest[14]; -byte dataIn[10]; -byte in; - -/* - * Variables - */ -bool led0x00 = FALSE; //0x00 sMCU_OK Led -bool led0x01 = FALSE; //0x01 sCom_In Led -bool led0x02 = FALSE; //0x02 sPC_OK Led -bool led0x03 = FALSE; //0x03 -bool led0x04 = FALSE; //0x04 -bool led0x05 = FALSE; //0x05 -bool led0x06 = FALSE; //0x06 -bool led0x07 = FALSE; //0x07 - -byte SerialIn; -wordbyte wordIn; -byte wordInByte[2]; -word error; -byte STATUS_PC; -//Tiempo -byte tLed = 0x00; -byte tMotor = 0x00; - -/* -** =================================================================== -** Event : Aux_Int_OnInterrupt (module Events) -** -** Component : Aux_Int [TimerInt] -** Description : -** When a timer interrupt occurs this event is called (only -** when the component is enabled - and the events are -** enabled - ). This event is enabled only if a -** is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ - -//Resolucion de 10 ms -void Aux_Int_OnInterrupt(void) -{ - - //Bucle para 100 ms de leds - if(tLed != 10-1) - { - tLed++; - } - else - { - //Control de leds de status - if(led0x00 == TRUE) sMCU_OK_NegVal(); //0x00 - else sMCU_OK_ClrVal(); - if(led0x01 == TRUE) sCom_In_NegVal(); //0x01 - else sCom_In_ClrVal(); - if(led0x02 == TRUE) sPC_OK_NegVal(); //0x02 - else sPC_OK_ClrVal(); - tLed = 0; - } - - - //Bucle para 100 ms de leds - if(tMotor != 2-1) - { - tMotor++; - } - else - { - - } - - - - /*TRANSMISION DE DATA*/ - - //Transmitir DATA - - envioData(); - - - -} - -/* -** =================================================================== -** Event : SerialCom_OnRxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnRxChar(void) -{ - -} - -/* -** =================================================================== -** Event : SerialCom_OnTxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : RESET_INTERRUPT_OnInterrupt (module Events) -** -** Component : RESET_INTERRUPT [ExtInt] -** Description : -** This event is called when an active signal edge/level has -** occurred. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void RESET_INTERRUPT_OnInterrupt(void) -{ - - -} - -/* -** =================================================================== -** Event : ADC_OnEnd (module Events) -** -** Component : ADC [ADC] -** Description : -** This event is called after the measurement (which consists -** of <1 or more conversions>) is/are finished. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void ADC_OnEnd(void) -{ - /* Write your code here ... */ -} - - -/* -** =================================================================== -** Event : SerialCom_OnFullRxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called when the input buffer is full; -** i.e. after reception of the last character -** that was successfully placed into input buffer. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFullRxBuf(void) -{ - - (void)SerialCom_RecvBlock(&dataIn,SIZEBUFFERIN,&err); - (void)SerialCom_ClearRxBuf(); - if(dataIn[9] == 0xFF) - { - //Set the motor speed - setMotorSpeed256(dataIn[0],1); - setMotorSpeed256(dataIn[1],2); - setMotorSpeed256(dataIn[2],3); - setMotorSpeed256(dataIn[3],4); - - //Servo Pos - - servoPanAngle(dataIn[4]);//Resolucin de 0 - 255 - servoTiltAngle(dataIn[5]);//Resolucin de 0 - 255 - - //Set Light bright - (void)LedLight1_SetRatio8(dataIn[6]); - (void)LedLight2_SetRatio8(dataIn[7]); - - STATUS_PC = dataIn[8]; - } - -} - -/* -** =================================================================== -** Event : SerialCom_OnFreeTxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after the last character in output -** buffer is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFreeTxBuf(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnError (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called when a channel error (not the error -** returned by a given method) occurs. The errors can be read -** using method. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnError(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnRxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnRxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnTxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* END Events */ - -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/b01b08393dc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/b01b08393dc4001515648e1660054a1a deleted file mode 100644 index 8e37a74..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/b01b08393dc4001515648e1660054a1a +++ /dev/null @@ -1,341 +0,0 @@ -/* ################################################################### -** Filename : Events.c -** Project : X-Sub MCU Firmware -** Processor : MCF51QE128CLK -** Component : Events -** Version : Driver 01.02 -** Compiler : CodeWarrior ColdFireV1 C Compiler -** Date/Time : 2015-05-30, 09:28, # CodeGen: 0 -** Abstract : -** This is user's event module. -** Put your event handler code here. -** Settings : -** Contents : -** No public methods -** -** ###################################################################*/ -/*! -** @file Events.c -** @version 01.02 -** @brief -** This is user's event module. -** Put your event handler code here. -*/ -/*! -** @addtogroup Events_module Events module documentation -** @{ -*/ -/* MODULE Events */ - -#include "Cpu.h" -#include "Events.h" - -/* User includes (#include below this line is not maintained by Processor Expert) */ -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - -byte err = 0; -byte data[27]; -byte data2[2]; -byte dataTest[14]; -byte in; - -/* - * Variables - */ -bool led0x00 = FALSE; //0x00 sMCU_OK Led -bool led0x01 = FALSE; //0x01 sCom_In Led -bool led0x02 = FALSE; //0x02 sPC_OK Led -bool led0x03 = FALSE; //0x03 -bool led0x04 = FALSE; //0x04 -bool led0x05 = FALSE; //0x05 -bool led0x06 = FALSE; //0x06 -bool led0x07 = FALSE; //0x07 - -byte SerialIn; -wordbyte wordIn; -byte wordInByte[2]; -word error; -//Tiempo -byte tLed = 0x00; -byte tMotor = 0x00; - -/* -** =================================================================== -** Event : Aux_Int_OnInterrupt (module Events) -** -** Component : Aux_Int [TimerInt] -** Description : -** When a timer interrupt occurs this event is called (only -** when the component is enabled - and the events are -** enabled - ). This event is enabled only if a -** is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ - -//Resolucion de 10 ms -void Aux_Int_OnInterrupt(void) -{ - - //Bucle para 100 ms de leds - if(tLed != 10-1) - { - tLed++; - } - else - { - //Control de leds de status - if(led0x00 == TRUE) sMCU_OK_NegVal(); //0x00 - else sMCU_OK_ClrVal(); - if(led0x01 == TRUE) sCom_In_NegVal(); //0x01 - else sCom_In_ClrVal(); - if(led0x02 == TRUE) sPC_OK_NegVal(); //0x02 - else sPC_OK_ClrVal(); - tLed = 0; - } - - - //Bucle para 100 ms de leds - if(tMotor != 2-1) - { - tMotor++; - } - else - { - - } - - - - /*TRANSMISION DE DATA*/ - - //Transmitir DATA - - //envioData(); - - - -} - -/* -** =================================================================== -** Event : SerialCom_OnRxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnRxChar(void) -{ - /* Write your code here ... */ - //sPC_OK_W(); - //(void)SerialCom_SendChar(0x01); - //(void)SerialCom_RecvChar(&SerialIn); - //setMotorSpeed256(SerialIn,1); - //(void)SerialCom_SendChar(SerialIn); - //(void)SerialCom_ClearRxBuf(); - //(void)SerialCom_ClearTxBuf(); - delay(5000); -} - -/* -** =================================================================== -** Event : SerialCom_OnTxChar (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : RESET_INTERRUPT_OnInterrupt (module Events) -** -** Component : RESET_INTERRUPT [ExtInt] -** Description : -** This event is called when an active signal edge/level has -** occurred. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void RESET_INTERRUPT_OnInterrupt(void) -{ - /* place your RESET_INTERRUPT interrupt procedure body here*/ - //setMotorSpeed1024SW(0,2); - //delay(2000); - //(void)SerialCom_SendChar(wordIn.byte[0]); - //(void)SerialCom_SendChar(wordIn.byte[1]); - /* - (void)SerialCom_SendChar(data[err]); - (void)SerialCom_ClearTxBuf(); - - err++; - if(err == 14) err = 0; - */ - sCom_In_W; - - SerialCom_SendChar(0xAA); - SerialCom_SendChar(0xEE); - - - delay(500); - -} - -/* -** =================================================================== -** Event : ADC_OnEnd (module Events) -** -** Component : ADC [ADC] -** Description : -** This event is called after the measurement (which consists -** of <1 or more conversions>) is/are finished. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void ADC_OnEnd(void) -{ - /* Write your code here ... */ -} - - -/* -** =================================================================== -** Event : SerialCom_OnFullRxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called when the input buffer is full; -** i.e. after reception of the last character -** that was successfully placed into input buffer. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFullRxBuf(void) -{ - /* Write your code here ... */ - /* - sPC_OK_W(); - //wordIn.byte[0] = 0x00; - //wordIn.byte[1] = 0x00; - //wordIn.byte[2] = 0x00; - (void)SerialCom_RecvBlock(wordIn.byte,2,&error); - //wordInByte[0] = wordIn.byte[0]; - //wordInByte[1] = wordIn.byte[1]; - setMotorSpeed1024SW(wordIn.word,2); - //(void)SerialCom_SendBlock(wordIn.byte,2,&error); - //(void)SerialCom_SendChar(wordIn.byte[0]); - //(void)SerialCom_SendChar(wordIn.byte[1]); - (void)SerialCom_ClearRxBuf(); - //(void)SerialCom_ClearTxBuf(); - */ -} - -/* -** =================================================================== -** Event : SerialCom_OnFreeTxBuf (module Events) -** -** Component : SerialCom [AsynchroSerial] -** Description : -** This event is called after the last character in output -** buffer is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void SerialCom_OnFreeTxBuf(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnError (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called when a channel error (not the error -** returned by a given method) occurs. The errors can be read -** using method. -** The event is available only when the property is enabled. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnError(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnRxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a correct character is received. -** The event is available only when the property is enabled and either the -** property is enabled or the property (if -** supported) is set to Single-wire mode. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnRxChar(void) -{ - /* Write your code here ... */ -} - -/* -** =================================================================== -** Event : S_Wire_OnTxChar (module Events) -** -** Component : S_Wire [AsynchroSerial] -** Description : -** This event is called after a character is transmitted. -** Parameters : None -** Returns : Nothing -** =================================================================== -*/ -void S_Wire_OnTxChar(void) -{ - /* Write your code here ... */ -} - -/* END Events */ - -/*! -** @} -*/ -/* -** ################################################################### -** -** This file was created by Processor Expert 10.3 [05.09] -** for the Freescale ColdFireV1 series of microcontrollers. -** -** ################################################################### -*/ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/c090e8075ec400151c37d9c83b392de4 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/c090e8075ec400151c37d9c83b392de4 deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/c090e8075ec400151c37d9c83b392de4 +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/d079197d3dc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/d079197d3dc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/d079197d3dc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/e04b6e1bd4c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/e04b6e1bd4c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/33/e04b6e1bd4c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/0024dd5035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/0024dd5035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/0024dd5035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/00d0f8ca5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/00d0f8ca5bc4001515648e1660054a1a deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/00d0f8ca5bc4001515648e1660054a1a +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/704d385f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/704d385f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/704d385f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/d01c345e66c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/d01c345e66c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/d01c345e66c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/e0f8d468d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/e0f8d468d2c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/34/e0f8d468d2c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/003c73c639c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/003c73c639c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/003c73c639c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/207f22cd7fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/207f22cd7fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/207f22cd7fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/309d2c7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/309d2c7e7cc400151f08d780d899b0c2 deleted file mode 100644 index 31b76ba..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/309d2c7e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,20 +0,0 @@ -Generated_Code/M3_ESC_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M3_ESC.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M3_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/505aa7c483c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/505aa7c483c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/505aa7c483c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/707e45369cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/707e45369cc6001511f8dea3160ea30e deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/707e45369cc6001511f8dea3160ea30e +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/90395bd735c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/90395bd735c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/90395bd735c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/9042eaa983c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/9042eaa983c4001518258e1c1f15aebe deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/9042eaa983c4001518258e1c1f15aebe +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/90d34a7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/90d34a7e7cc400151f08d780d899b0c2 deleted file mode 100644 index 3c64165..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/90d34a7e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Project_Settings/Startup_Code/startcf.c" \ - -C_SRCS += \ -../Project_Settings/Startup_Code/startcf.c \ - -OBJS += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -OBJS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.obj" \ - -C_DEPS += \ -./Project_Settings/Startup_Code/startcf_c.d \ - -OBJS_OS_FORMAT += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -C_DEPS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Project_Settings/Startup_Code/startcf_c.obj: ../Project_Settings/Startup_Code/startcf.c - @echo 'Building file: $<' - @echo 'Executing target #5 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Project_Settings/Startup_Code/startcf.args" -o "Project_Settings/Startup_Code/startcf_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Project_Settings/Startup_Code/%.d: ../Project_Settings/Startup_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/b03bba6863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/b03bba6863c40015180fe241a6b5bfe5 deleted file mode 100644 index 7a10f5b..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/b03bba6863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Init.c" \ - -C_SRCS += \ -../Init.c \ - -OBJS += \ -./Init_c.obj \ - -OBJS_QUOTED += \ -"./Init_c.obj" \ - -C_DEPS += \ -./Init_c.d \ - -OBJS_OS_FORMAT += \ -./Init_c.obj \ - -C_DEPS_QUOTED += \ -"./Init_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Init_c.obj: ../Init.c - @echo 'Building file: $<' - @echo 'Executing target #6 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Init.args" -o "./Init_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Init_c.d: ../Init.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0a69fe537c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0a69fe537c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0a69fe537c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/d070c7dc38c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/d070c7dc38c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/35/d070c7dc38c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/3099ab2d70c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/3099ab2d70c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/3099ab2d70c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/30e1dabf80c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/30e1dabf80c8001513b8f2fec7d3ea00 deleted file mode 100644 index 02de40f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/30e1dabf80c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,119 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -#Progress monitor hint: 30 -first : all --include ../makefile.init - -# This file contains definitions of environment variables used in the makefiles and .args files if exist. --include makefile.local - -RM := "$(GNU_Make_Install_DirEnv)/rm" -f - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Sources/subdir.mk --include Project_Settings/Startup_Code/subdir.mk --include Generated_Code/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXECUTABLES += \ -X-SubMCUFirmware.elf \ - -EXECUTABLES_QUOTED += \ -"X-SubMCUFirmware.elf" \ - -EXECUTABLES_OS_FORMAT += \ -X-SubMCUFirmware.elf \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS += \ -X-SubMCUFirmware.elf.s19 \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED += \ -"X-SubMCUFirmware.elf.s19" \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT += \ -X-SubMCUFirmware.elf.s19 \ - - -# All Target -call-burner := 0 -ifneq ($(strip $(EXECUTABLES)),) -ifneq ($(strip $(BBL_SRCS_QUOTED)),) -call-burner := 1 -endif -endif -ifeq ($(call-burner),1) -all: X-SubMCUFirmware.elf X-SubMCUFirmware.elf.s19 -else -all: X-SubMCUFirmware.elf -endif - -# Tool invocations -X-SubMCUFirmware.elf: $(OBJS) $(USER_OBJS) ../Project_Settings/Linker_Files/ProcessorExpert.lcf - @echo 'Building target: $@' - @echo 'Executing target #31 $@' - @echo 'Invoking: ColdFire Linker' - "$(CF_ToolsDirEnv)/mwldmcf" -o "X-SubMCUFirmware.elf" @@"X-SubMCUFirmware.args" $(USER_OBJS_QUOTED) $(LIBS_QUOTED) - @echo 'Finished building target: $@' - @echo ' ' - -X-SubMCUFirmware.elf.s19: $(BBL_SRCS) $(EXECUTABLES) - @echo 'Executing target #32 $@' - @echo 'Invoking: Burner' - "$(HC08ToolsEnv)/burner.exe" -f="$<" -env"ABS_FILE=$(strip $(EXECUTABLES_OS_FORMAT))" - @echo 'Finished building: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(S_DEPS_QUOTED) "./*/*.obj" "./*.obj" "./*/*/*.obj" $(CPP_DEPS_QUOTED) $(CC_DEPS_QUOTED) $(_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED) $(S_UPPER_DEPS_QUOTED) $(CXX_DEPS_QUOTED) $(ASM_DEPS_QUOTED) $(ASM_UPPER_DEPS_QUOTED) $(C_UPPER_DEPS_QUOTED) $(C++_DEPS_QUOTED) $(EXECUTABLES_QUOTED) "./*/*.d" "./*.d" "./*/*/*.d" $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf $(ProjDirPath)/FLASH/X-SubMCUFirmware.args $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.S19 $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.xMAP - -@echo ' ' - -.PHONY: all clean dependents explicit-dependencies warning-messages -.SECONDARY: - --include ../makefile.targets - -explicit-dependencies: ../Project_Settings/Linker_Files/ProcessorExpert.lcf - -warning-messages: - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/6048baae5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/6048baae5bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/6048baae5bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/706a678380c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/706a678380c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/706a678380c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/9000c3485dc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/9000c3485dc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/9000c3485dc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/a0e8b33e6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/a0e8b33e6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/a0e8b33e6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/a0f7f7c13ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/a0f7f7c13ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/a0f7f7c13ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/f01cb73e6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/f01cb73e6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/36/f01cb73e6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/003594e537c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/003594e537c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/003594e537c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/100ad17a35c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/100ad17a35c8001513b8f2fec7d3ea00 deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/100ad17a35c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/600f90d9cec5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/600f90d9cec5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/600f90d9cec5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/600fa2c36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/600fa2c36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 02de40f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/600fa2c36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,119 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -#Progress monitor hint: 30 -first : all --include ../makefile.init - -# This file contains definitions of environment variables used in the makefiles and .args files if exist. --include makefile.local - -RM := "$(GNU_Make_Install_DirEnv)/rm" -f - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Sources/subdir.mk --include Project_Settings/Startup_Code/subdir.mk --include Generated_Code/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXECUTABLES += \ -X-SubMCUFirmware.elf \ - -EXECUTABLES_QUOTED += \ -"X-SubMCUFirmware.elf" \ - -EXECUTABLES_OS_FORMAT += \ -X-SubMCUFirmware.elf \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS += \ -X-SubMCUFirmware.elf.s19 \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED += \ -"X-SubMCUFirmware.elf.s19" \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT += \ -X-SubMCUFirmware.elf.s19 \ - - -# All Target -call-burner := 0 -ifneq ($(strip $(EXECUTABLES)),) -ifneq ($(strip $(BBL_SRCS_QUOTED)),) -call-burner := 1 -endif -endif -ifeq ($(call-burner),1) -all: X-SubMCUFirmware.elf X-SubMCUFirmware.elf.s19 -else -all: X-SubMCUFirmware.elf -endif - -# Tool invocations -X-SubMCUFirmware.elf: $(OBJS) $(USER_OBJS) ../Project_Settings/Linker_Files/ProcessorExpert.lcf - @echo 'Building target: $@' - @echo 'Executing target #31 $@' - @echo 'Invoking: ColdFire Linker' - "$(CF_ToolsDirEnv)/mwldmcf" -o "X-SubMCUFirmware.elf" @@"X-SubMCUFirmware.args" $(USER_OBJS_QUOTED) $(LIBS_QUOTED) - @echo 'Finished building target: $@' - @echo ' ' - -X-SubMCUFirmware.elf.s19: $(BBL_SRCS) $(EXECUTABLES) - @echo 'Executing target #32 $@' - @echo 'Invoking: Burner' - "$(HC08ToolsEnv)/burner.exe" -f="$<" -env"ABS_FILE=$(strip $(EXECUTABLES_OS_FORMAT))" - @echo 'Finished building: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(S_DEPS_QUOTED) "./*/*.obj" "./*.obj" "./*/*/*.obj" $(CPP_DEPS_QUOTED) $(CC_DEPS_QUOTED) $(_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED) $(S_UPPER_DEPS_QUOTED) $(CXX_DEPS_QUOTED) $(ASM_DEPS_QUOTED) $(ASM_UPPER_DEPS_QUOTED) $(C_UPPER_DEPS_QUOTED) $(C++_DEPS_QUOTED) $(EXECUTABLES_QUOTED) "./*/*.d" "./*.d" "./*/*/*.d" $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf $(ProjDirPath)/FLASH/X-SubMCUFirmware.args $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.S19 $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.xMAP - -@echo ' ' - -.PHONY: all clean dependents explicit-dependencies warning-messages -.SECONDARY: - --include ../makefile.targets - -explicit-dependencies: ../Project_Settings/Linker_Files/ProcessorExpert.lcf - -warning-messages: - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/6091db7a35c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/6091db7a35c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/6091db7a35c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/702f3d5f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/702f3d5f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/702f3d5f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/80469ea7d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/80469ea7d2c5001515acf159be79a4ca deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/80469ea7d2c5001515acf159be79a4ca +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/a01ee6d9cec5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/a01ee6d9cec5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/a01ee6d9cec5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/b00335369cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/b00335369cc6001511f8dea3160ea30e deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/b00335369cc6001511f8dea3160ea30e +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/b0bb3bf05cc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/b0bb3bf05cc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/37/b0bb3bf05cc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/10453c5f37c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/10453c5f37c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/10453c5f37c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/204bd9dc38c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/204bd9dc38c8001513b8f2fec7d3ea00 deleted file mode 100644 index 3af73d2..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/204bd9dc38c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,11 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -USER_OBJS := - -USER_OBJS_QUOTED := - -LIBS := - -LIBS_QUOTED := \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/20f7455e66c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/20f7455e66c40015180fe241a6b5bfe5 deleted file mode 100644 index 02de40f..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/20f7455e66c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,119 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -#Progress monitor hint: 30 -first : all --include ../makefile.init - -# This file contains definitions of environment variables used in the makefiles and .args files if exist. --include makefile.local - -RM := "$(GNU_Make_Install_DirEnv)/rm" -f - -# All of the sources participating in the build are defined here --include sources.mk --include subdir.mk --include Sources/subdir.mk --include Project_Settings/Startup_Code/subdir.mk --include Generated_Code/subdir.mk --include objects.mk - -ifneq ($(MAKECMDGOALS),clean) -ifneq ($(strip $(C++_DEPS)),) --include $(C++_DEPS) -endif -ifneq ($(strip $(ASM_DEPS)),) --include $(ASM_DEPS) -endif -ifneq ($(strip $(C_DEPS)),) --include $(C_DEPS) -endif -ifneq ($(strip $(CC_DEPS)),) --include $(CC_DEPS) -endif -ifneq ($(strip $(ASM_UPPER_DEPS)),) --include $(ASM_UPPER_DEPS) -endif -ifneq ($(strip $(CPP_DEPS)),) --include $(CPP_DEPS) -endif -ifneq ($(strip $(S_DEPS)),) --include $(S_DEPS) -endif -ifneq ($(strip $(CXX_DEPS)),) --include $(CXX_DEPS) -endif -ifneq ($(strip $(C_UPPER_DEPS)),) --include $(C_UPPER_DEPS) -endif -ifneq ($(strip $(S_UPPER_DEPS)),) --include $(S_UPPER_DEPS) -endif -endif - --include ../makefile.defs - -# Add inputs and outputs from these tool invocations to the build variables -EXECUTABLES += \ -X-SubMCUFirmware.elf \ - -EXECUTABLES_QUOTED += \ -"X-SubMCUFirmware.elf" \ - -EXECUTABLES_OS_FORMAT += \ -X-SubMCUFirmware.elf \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS += \ -X-SubMCUFirmware.elf.s19 \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED += \ -"X-SubMCUFirmware.elf.s19" \ - -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT += \ -X-SubMCUFirmware.elf.s19 \ - - -# All Target -call-burner := 0 -ifneq ($(strip $(EXECUTABLES)),) -ifneq ($(strip $(BBL_SRCS_QUOTED)),) -call-burner := 1 -endif -endif -ifeq ($(call-burner),1) -all: X-SubMCUFirmware.elf X-SubMCUFirmware.elf.s19 -else -all: X-SubMCUFirmware.elf -endif - -# Tool invocations -X-SubMCUFirmware.elf: $(OBJS) $(USER_OBJS) ../Project_Settings/Linker_Files/ProcessorExpert.lcf - @echo 'Building target: $@' - @echo 'Executing target #31 $@' - @echo 'Invoking: ColdFire Linker' - "$(CF_ToolsDirEnv)/mwldmcf" -o "X-SubMCUFirmware.elf" @@"X-SubMCUFirmware.args" $(USER_OBJS_QUOTED) $(LIBS_QUOTED) - @echo 'Finished building target: $@' - @echo ' ' - -X-SubMCUFirmware.elf.s19: $(BBL_SRCS) $(EXECUTABLES) - @echo 'Executing target #32 $@' - @echo 'Invoking: Burner' - "$(HC08ToolsEnv)/burner.exe" -f="$<" -env"ABS_FILE=$(strip $(EXECUTABLES_OS_FORMAT))" - @echo 'Finished building: $@' - @echo ' ' - -# Other Targets -clean: - -$(RM) $(S_DEPS_QUOTED) "./*/*.obj" "./*.obj" "./*/*/*.obj" $(CPP_DEPS_QUOTED) $(CC_DEPS_QUOTED) $(_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED) $(S_UPPER_DEPS_QUOTED) $(CXX_DEPS_QUOTED) $(ASM_DEPS_QUOTED) $(ASM_UPPER_DEPS_QUOTED) $(C_UPPER_DEPS_QUOTED) $(C++_DEPS_QUOTED) $(EXECUTABLES_QUOTED) "./*/*.d" "./*.d" "./*/*/*.d" $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf $(ProjDirPath)/FLASH/X-SubMCUFirmware.args $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.S19 $(ProjDirPath)/FLASH/X-SubMCUFirmware.elf.xMAP - -@echo ' ' - -.PHONY: all clean dependents explicit-dependencies warning-messages -.SECONDARY: - --include ../makefile.targets - -explicit-dependencies: ../Project_Settings/Linker_Files/ProcessorExpert.lcf - -warning-messages: - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/304735d23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/304735d23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index f479dec..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/304735d23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 91 - \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/804691c36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/804691c36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/804691c36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/c07395bf80c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/c07395bf80c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/c07395bf80c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/e05482075ec400151c37d9c83b392de4 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/e05482075ec400151c37d9c83b392de4 deleted file mode 100644 index 7a10f5b..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/e05482075ec400151c37d9c83b392de4 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Init.c" \ - -C_SRCS += \ -../Init.c \ - -OBJS += \ -./Init_c.obj \ - -OBJS_QUOTED += \ -"./Init_c.obj" \ - -C_DEPS += \ -./Init_c.d \ - -OBJS_OS_FORMAT += \ -./Init_c.obj \ - -C_DEPS_QUOTED += \ -"./Init_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Init_c.obj: ../Init.c - @echo 'Building file: $<' - @echo 'Executing target #6 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Init.args" -o "./Init_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Init_c.d: ../Init.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/e0f932cd7fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/e0f932cd7fc8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/38/e0f932cd7fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/00a9557e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/00a9557e7cc400151f08d780d899b0c2 deleted file mode 100644 index 757e323..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/00a9557e7cc400151f08d780d899b0c2 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/306be88136c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/306be88136c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/306be88136c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/6010dc6737c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/6010dc6737c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/6010dc6737c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/60a2f5785bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/60a2f5785bc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/60a2f5785bc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/b01438d36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/b01438d36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/b01438d36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/b056577e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/b056577e7cc400151f08d780d899b0c2 deleted file mode 100644 index 17c561c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/b056577e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,12 +0,0 @@ -################################################################################ -# These macros are used by makefiles and argument files. -# When a space is included in the path and quotes (") cannot be used, -# a _ESCAPE version of the macro is added that escapes the space with backslash (\). -################################################################################ - -export HC08ToolsEnv=$(CWInstallLocationEnv)/MCU/prog -export GNU_Make_Install_DirEnv=$(CWInstallLocationEnv)/gnu/bin -export ProjDirPath=C:/Users/ddtdanilo/Dropbox/Tesis/X-Sub/MCU Firmware/X-Sub MCU Firmware -export CWInstallLocationEnv=C:/Freescale/CW MCU v10.6 -export MCUToolsBaseDirEnv=$(CWInstallLocationEnv)/MCU -export CF_ToolsDirEnv=$(CWInstallLocationEnv)/MCU/ColdFire_Tools/Command_Line_Tools diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/d059fbd26fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/d059fbd26fc40015180fe241a6b5bfe5 deleted file mode 100644 index 7a10f5b..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/39/d059fbd26fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Init.c" \ - -C_SRCS += \ -../Init.c \ - -OBJS += \ -./Init_c.obj \ - -OBJS_QUOTED += \ -"./Init_c.obj" \ - -C_DEPS += \ -./Init_c.d \ - -OBJS_OS_FORMAT += \ -./Init_c.obj \ - -C_DEPS_QUOTED += \ -"./Init_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Init_c.obj: ../Init.c - @echo 'Building file: $<' - @echo 'Executing target #6 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Init.args" -o "./Init_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Init_c.d: ../Init.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/3023076963c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/3023076963c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/3023076963c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/908a9bc46fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/908a9bc46fc40015180fe241a6b5bfe5 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/a095ac3e6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/a095ac3e6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/a095ac3e6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0bc81495dc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0bc81495dc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0bc81495dc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/f0f6eec13ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/f0f6eec13ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3a/f0f6eec13ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/000a317e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/000a317e7cc400151f08d780d899b0c2 deleted file mode 100644 index 4439a0c..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/000a317e7cc400151f08d780d899b0c2 +++ /dev/null @@ -1,20 +0,0 @@ -Generated_Code/PresenciaAgua1_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua1.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/8048a89936c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/8048a89936c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/8048a89936c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/80fe7adc38c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/80fe7adc38c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/80fe7adc38c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/902354f682c4001518258e1c1f15aebe b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/902354f682c4001518258e1c1f15aebe deleted file mode 100644 index 40c06b4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/902354f682c4001518258e1c1f15aebe +++ /dev/null @@ -1,99 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - -O_SRCS := -CPP_SRCS := -ASM_UPPER_SRCS_QUOTED := -ABS_SRCS_QUOTED := -OBJ_SRCS_OS_FORMAT := -CXX_SRCS := -C++_SRCS_OS_FORMAT := -CXX_SRCS_QUOTED := -TODISASSEMBLE_SRCS_OS_FORMAT := -S_UPPER_SRCS_QUOTED := -ABS_SRCS := -TODISASSEMBLE_SRCS := -S_UPPER_SRCS := -OBJ_SRCS_QUOTED := -O_SRCS_OS_FORMAT := -TOPREPROCESS_SRCS := -C_SRCS_QUOTED := -CC_SRCS_QUOTED := -BBL_SRCS_QUOTED := -S_SRCS_OS_FORMAT := -C_UPPER_SRCS := -O_SRCS_QUOTED := -C_UPPER_SRCS_QUOTED := -OBJ_SRCS := -BBL_SRCS := -ASM_SRCS := -TOPREPROCESS_SRCS_OS_FORMAT := -ASM_UPPER_SRCS := -C++_SRCS := -ASM_SRCS_OS_FORMAT := -BBL_SRCS_OS_FORMAT := -CXX_SRCS_OS_FORMAT := -C_SRCS := -C++_SRCS_QUOTED := -ABS_SRCS_OS_FORMAT := -CPP_SRCS_OS_FORMAT := -S_SRCS := -CPP_SRCS_QUOTED := -ASM_SRCS_QUOTED := -CC_SRCS_OS_FORMAT := -C_UPPER_SRCS_OS_FORMAT := -S_SRCS_QUOTED := -TOPREPROCESS_SRCS_QUOTED := -ASM_UPPER_SRCS_OS_FORMAT := -C_SRCS_OS_FORMAT := -TODISASSEMBLE_SRCS_QUOTED := -S_UPPER_SRCS_OS_FORMAT := -CC_SRCS := -ASM_DEPS_OS_FORMAT := -S_DEPS_QUOTED := -OBJS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_OS_FORMAT := -EXECUTABLES_OS_FORMAT := -S_DEPS := -S_UPPER_DEPS := -ASM_DEPS := -CC_DEPS := -OBJS_QUOTED := -CPP_DEPS_QUOTED := -CC_DEPS_QUOTED := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS_QUOTED := -CPP_DEPS := -S_UPPER_DEPS_QUOTED := -EXECUTABLES := -C++_DEPS_OS_FORMAT := -CXX_DEPS_QUOTED := -C_DEPS := -_OUTPUTTYPE_NAME_BURNER_OUTPUT_OUTPUTS := -CXX_DEPS_OS_FORMAT := -C_UPPER_DEPS_OS_FORMAT := -CC_DEPS_OS_FORMAT := -ASM_DEPS_QUOTED := -S_UPPER_DEPS_OS_FORMAT := -S_DEPS_OS_FORMAT := -CXX_DEPS := -C++_DEPS := -ASM_UPPER_DEPS_QUOTED := -C_UPPER_DEPS_QUOTED := -CPP_DEPS_OS_FORMAT := -ASM_UPPER_DEPS := -C++_DEPS_QUOTED := -ASM_UPPER_DEPS_OS_FORMAT := -C_DEPS_OS_FORMAT := -EXECUTABLES_QUOTED := -C_UPPER_DEPS := -OBJS_OS_FORMAT := -C_DEPS_QUOTED := - -# Every subdirectory with source files must be described here -SUBDIRS := \ -Sources \ -Project_Settings/Startup_Code \ -. \ -Generated_Code \ - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/d075447f7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/d075447f7cc400151f08d780d899b0c2 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/d0de98d735c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/d0de98d735c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/d0de98d735c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/f03c246837c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/f03c246837c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3b/f03c246837c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/00821d7e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/00821d7e7cc400151f08d780d899b0c2 deleted file mode 100644 index 6394f38..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/00821d7e7cc400151f08d780d899b0c2 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60d2648380c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60d2648380c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60d2648380c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60ed2c369cc6001511f8dea3160ea30e b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60ed2c369cc6001511f8dea3160ea30e deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/60ed2c369cc6001511f8dea3160ea30e +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/70efc5ef5cc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/70efc5ef5cc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/70efc5ef5cc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/c0de327e7cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/c0de327e7cc400151f08d780d899b0c2 deleted file mode 100644 index 3a9fbdc..0000000 Binary files a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/c0de327e7cc400151f08d780d899b0c2 and /dev/null differ diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e0474df05cc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e0474df05cc4001515648e1660054a1a deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e0474df05cc4001515648e1660054a1a +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e099e65035c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e099e65035c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e099e65035c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e0b6ffbb6fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e0b6ffbb6fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e0b6ffbb6fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e0dd8ac36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e0dd8ac36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 4fd52a4..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3c/e0dd8ac36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,40 +0,0 @@ -Generated_Code/RESET_INTERRUPT_c.obj: C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\RESET_INTERRUPT.c \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\lib_ewl.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\common.prefix \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_c_version.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\RESET_INTERRUPT.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Types.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\stdint.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ansi_parms.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewlGlobals.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\coldfire\ansi_prefix.CF.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\os_enum.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\cstdint \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\limits_api.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_lib_ext1.h \ - C:\Freescale\CW\ MCU\ v10.6\MCU\ColdFire_Support\ewl\EWL_C\include\ewl_misra_types.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Error.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Const.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\IO_Map.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PE_Timer.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Sources\Events.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M1_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Cpu.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M2_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M3_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\M4_ESC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_PanCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_TiltCamera.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sMCU_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sPC_OK.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\sCom_In.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\Aux_Int.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\SerialCom.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\ADC.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\LedLight2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\CS1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\I2C.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua2.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\PresenciaAgua1.h \ - C:\Users\ddtdanilo\Dropbox\Tesis\X-Sub\MCU\ Firmware\X-Sub\ MCU\ Firmware\Generated_Code\S_Wire.h diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/40813c5e66c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/40813c5e66c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/40813c5e66c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/4081bd807cc400151f08d780d899b0c2 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/4081bd807cc400151f08d780d899b0c2 deleted file mode 100644 index e69de29..0000000 diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/40b368d23fc8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/40b368d23fc8001513b8f2fec7d3ea00 deleted file mode 100644 index c83beda..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/40b368d23fc8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,89 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Sources/Events.c" \ -"../Sources/OneWire.c" \ -"../Sources/main.c" \ -"../Sources/xSub.c" \ - -C_SRCS += \ -../Sources/Events.c \ -../Sources/OneWire.c \ -../Sources/main.c \ -../Sources/xSub.c \ - -OBJS += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -OBJS_QUOTED += \ -"./Sources/Events_c.obj" \ -"./Sources/OneWire_c.obj" \ -"./Sources/main_c.obj" \ -"./Sources/xSub_c.obj" \ - -C_DEPS += \ -./Sources/Events_c.d \ -./Sources/OneWire_c.d \ -./Sources/main_c.d \ -./Sources/xSub_c.d \ - -OBJS_OS_FORMAT += \ -./Sources/Events_c.obj \ -./Sources/OneWire_c.obj \ -./Sources/main_c.obj \ -./Sources/xSub_c.obj \ - -C_DEPS_QUOTED += \ -"./Sources/Events_c.d" \ -"./Sources/OneWire_c.d" \ -"./Sources/main_c.d" \ -"./Sources/xSub_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Sources/Events_c.obj: ../Sources/Events.c - @echo 'Building file: $<' - @echo 'Executing target #1 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/Events.args" -o "Sources/Events_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/%.d: ../Sources/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Sources/OneWire_c.obj: ../Sources/OneWire.c - @echo 'Building file: $<' - @echo 'Executing target #2 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/OneWire.args" -o "Sources/OneWire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/main_c.obj: ../Sources/main.c - @echo 'Building file: $<' - @echo 'Executing target #3 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/main.args" -o "Sources/main_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Sources/xSub_c.obj: ../Sources/xSub.c - @echo 'Building file: $<' - @echo 'Executing target #4 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Sources/xSub.args" -o "Sources/xSub_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/6039b6c863c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/6039b6c863c40015180fe241a6b5bfe5 deleted file mode 100644 index 3c64165..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/6039b6c863c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Project_Settings/Startup_Code/startcf.c" \ - -C_SRCS += \ -../Project_Settings/Startup_Code/startcf.c \ - -OBJS += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -OBJS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.obj" \ - -C_DEPS += \ -./Project_Settings/Startup_Code/startcf_c.d \ - -OBJS_OS_FORMAT += \ -./Project_Settings/Startup_Code/startcf_c.obj \ - -C_DEPS_QUOTED += \ -"./Project_Settings/Startup_Code/startcf_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Project_Settings/Startup_Code/startcf_c.obj: ../Project_Settings/Startup_Code/startcf.c - @echo 'Building file: $<' - @echo 'Executing target #5 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Project_Settings/Startup_Code/startcf.args" -o "Project_Settings/Startup_Code/startcf_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Project_Settings/Startup_Code/%.d: ../Project_Settings/Startup_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/90d33a5e66c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/90d33a5e66c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/90d33a5e66c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/a07b3aa7d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/a07b3aa7d2c5001515acf159be79a4ca deleted file mode 100644 index 7a10f5b..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/a07b3aa7d2c5001515acf159be79a4ca +++ /dev/null @@ -1,44 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Init.c" \ - -C_SRCS += \ -../Init.c \ - -OBJS += \ -./Init_c.obj \ - -OBJS_QUOTED += \ -"./Init_c.obj" \ - -C_DEPS += \ -./Init_c.d \ - -OBJS_OS_FORMAT += \ -./Init_c.obj \ - -C_DEPS_QUOTED += \ -"./Init_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Init_c.obj: ../Init.c - @echo 'Building file: $<' - @echo 'Executing target #6 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Init.args" -o "./Init_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Init_c.d: ../Init.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b005c2ad5bc4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b005c2ad5bc4001515648e1660054a1a deleted file mode 100644 index f6664a7..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b005c2ad5bc4001515648e1660054a1a +++ /dev/null @@ -1,556 +0,0 @@ -/* - * xSub.c - * - * Created on: Jun 11, 2015 - * Author: ddtdanilo - */ - -/*Includes*/ -#include "Cpu.h" -#include "Events.h" -#include "M1_ESC.h" -#include "M2_ESC.h" -#include "M3_ESC.h" -#include "M4_ESC.h" -/* Include shared modules, which are used for whole project */ -#include "PE_Types.h" -#include "PE_Error.h" -#include "PE_Const.h" -#include "IO_Map.h" - -/*Mis includes*/ -#include "xSub.h" -#include "OneWire.h" - - - - -//Cambia el Status de un LED -//Hace que se mantenga encendido o titilando si est activo. -void lStatus(byte nLed, bool status) -{ - switch(nLed) - { - case 0x00: - led0x00 = status; - break; - - case 0x01: - led0x01 = status; - break; - - case 0x02: - led0x02 = status; - break; - - case 0x03: - led0x03 = status; - break; - - case 0x04: - led0x04 = status; - break; - - case 0x05: - led0x05 = status; - break; - - case 0x06: - led0x06 = status; - break; - - case 0x07: - led0x07 = status; - break; - - } -} - -//Activa a sMCU_OK -void sMCU_OK_W() -{ - lStatus(0x00,TRUE); -} - -//Desactiva a sMCU_OK -void sMCU_OK_NW() -{ - lStatus(0x00,FALSE); -} - -//Muestra titilando a sPC_OK -void sCom_In_W() -{ - lStatus(0x01,TRUE); -} - -//Muestra titilando a sPC_OK -void sCom_In_NW() -{ - lStatus(0x01,FALSE); -} - -//Muestra titilando a sPC_OK -void sPC_OK_W() -{ - lStatus(0x02,TRUE); -} - -//Muestra titilando a sPC_OK -void sPC_OK_NW() -{ - lStatus(0x02,FALSE); -} - -//paraliza el MCU por el tiempo time en ms -void delay(word time) -{ - //sPC_OK_W(); - Cpu_Delay100US(time*10); -} - - -//Inicializa los motores -void initMxSub(byte tipo){ - if(tipo == 1)//HK 30A - { - word spDC; - M1_ESC_Enable(); - M2_ESC_Enable(); - M3_ESC_Enable(); - M4_ESC_Enable(); - spDC = CENTERDC; //0xED71 = 7.24% = 60788 - M1_ESC_SetRatio16(spDC); - M2_ESC_SetRatio16(spDC); - M3_ESC_SetRatio16(spDC); - M4_ESC_SetRatio16(spDC); - delay(5000); - } - - if(tipo == 2)//Skywing - { - word spDC; - M1_ESC_Enable(); - M2_ESC_Enable(); - M3_ESC_Enable(); - M4_ESC_Enable(); - spDC = MAXFORWARD; - M1_ESC_SetRatio16(spDC); - M2_ESC_SetRatio16(spDC); - M3_ESC_SetRatio16(spDC); - M4_ESC_SetRatio16(spDC); - delay(5000); - } - - -} - -//Coloca un DC a todos los motores -void setDC(word Speed) -{ - (void)M1_ESC_SetRatio16(Speed); - (void)M2_ESC_SetRatio16(Speed); - (void)M3_ESC_SetRatio16(Speed); - (void)M4_ESC_SetRatio16(Speed); -} - -//Setea la velocidad de los motores de manera individual. Rango de 10 bits-> 0 - 1023 -void setMotorSpeed1024(word Speed,byte Motor){ - - Speed = map(Speed,0,1023,MAXFORWARD,MAXBACKWARD); - - switch(Motor){ - - case 1: - (void)M1_ESC_SetRatio16(CENTERDC); - (void)M1_ESC_SetRatio16(Speed); - case 2: - (void)M2_ESC_SetRatio16(CENTERDC); - (void)M2_ESC_SetRatio16(Speed); - case 3: - (void)M3_ESC_SetRatio16(CENTERDC); - (void)M3_ESC_SetRatio16(Speed); - case 4: - (void)M4_ESC_SetRatio16(CENTERDC); - (void)M4_ESC_SetRatio16(Speed); - } -} - -//Setea la velocidad de los motores de manera individual. Rango de 8 bits-> 0 - 255 -void setMotorSpeed256(byte Speed,byte Motor){ - - Speed = map(Speed,0,255,MAXFORWARD,MAXBACKWARD); - - switch(Motor){ - - case 1: - (void)M1_ESC_SetRatio8(CENTERDC); - (void)M1_ESC_SetRatio8(Speed); - case 2: - (void)M2_ESC_SetRatio8(CENTERDC); - (void)M2_ESC_SetRatio8(Speed); - case 3: - (void)M3_ESC_SetRatio8(CENTERDC); - (void)M3_ESC_SetRatio8(Speed); - case 4: - (void)M4_ESC_SetRatio8(CENTERDC); - (void)M4_ESC_SetRatio8(Speed); - } -} - -//Setea la velocidad de los motores de manera individual. Rango de 10 bits-> 0 - 1023 SKYWING -void setMotorSpeed1024SW(word Speed,byte Motor){ - - Speed = map(Speed,0,1023,MAXBACKWARD,CENTERDC); - - switch(Motor){ - - case 1: - - (void)M1_ESC_SetRatio16(Speed); - case 2: - - (void)M2_ESC_SetRatio16(Speed); - case 3: - - (void)M3_ESC_SetRatio16(Speed); - case 4: - - (void)M4_ESC_SetRatio16(Speed); - } -} -//SERVOS - - /*Pan*/ -void servoPanAngle(word Angle)//Resolucin de 0 - 255 -{ - Angle = map(Angle,0,255,MINSERVOUS,MAXSERVOUS); - S_PanCamera_SetDutyUS(Angle); -} - -void servoPan1024(word In)//Resolucin de 0 - 1023 (0 - 0x1023) -{ - In = map(In,0,1023,MINSERVOUS,MAXSERVOUS); - S_PanCamera_SetDutyUS(In); -} - - /*Tilt*/ -void servoTiltAngle(word Angle)//Resolucin de 0 - 255 -{ - Angle = map(Angle,0,255,MINSERVOUS,MAXSERVOUS); - S_TiltCamera_SetDutyUS(Angle); -} - -void servoTilt1024(word In)//Resolucin de 0 - 1023 (0 - 0x1023) -{ - In = map(In,0,1023,MINSERVOUS,MAXSERVOUS); - S_TiltCamera_SetDutyUS(In); -} - -/****LEDS****/ - void setLEDPWM(word PWM){ - LedLight1_SetRatio16(PWM); - LedLight2_SetRatio16(PWM); - } - - void setLED1PWM(word PWM){ - LedLight1_SetRatio16(PWM); - } - - void setLED2PWM(word PWM){ - LedLight2_SetRatio16(PWM); - } - - -//MAPEA -long map(long x, long in_min,long in_max,long out_min, long out_max){ - return (x-in_min)*(out_max-out_min)/(in_max-in_min)+out_min; -} - - -/*I2C*/ - -byte writeRegisterI2C(byte reg, byte data)//manera sencilla de editar un registro -{ - byte DATA[2]; - word Sent; - byte err; - DATA[0] = reg; // registro a editar - DATA[1] = data; // data a enviar - err = I2C_SendBlock(DATA,2,&Sent); - return err; -} - -void initMPU()//Inicializa la IMU -{ - byte err; - byte reg = 0x6B; // PWR_MGMT_1 register - byte data = 0x00; // set to zero (wakes up the MPU-6050) - (void)I2C_SelectSlave(MPU); - while(writeRegisterI2C(reg,data) != ERR_OK); - delay(10); - while(writeRegisterI2C(MPU6050_ACCEL_CONFIG,MPU6050_AFS_SEL_4G) != ERR_OK);//+-4G - while(writeRegisterI2C(MPU6050_GYRO_CONFIG,MPU6050_FS_SEL_1000) != ERR_OK);//+-1000/s -} - - -//Obtener data de la IMU. data debe ser de tamao 14 -void dataMPUtoArray(byte dataIn[]) -{ - word Sent; - (void)I2C_SelectSlave(MPU); - while(I2C_SendChar(0x3B) != ERR_OK); - while(I2C_RecvBlock(dataIn,14,&Sent) != ERR_OK); - - aceleracionX.HIGH.data = dataIn[0]; - aceleracionX.LOW.data = dataIn[1]; - aceleracionY.HIGH.data = dataIn[2]; - aceleracionY.LOW.data = dataIn[3]; - aceleracionZ.HIGH.data = dataIn[4]; - aceleracionZ.LOW.data = dataIn[5]; - tempInterna.HIGH.data = dataIn[6]; - tempInterna.LOW.data = dataIn[7]; - velAngularX.HIGH.data = dataIn[8]; - velAngularX.LOW.data = dataIn[9]; - velAngularY.HIGH.data = dataIn[10]; - velAngularY.LOW.data = dataIn[11]; - velAngularZ.HIGH.data = dataIn[12]; - velAngularZ.LOW.data = dataIn[13]; - /* - * - AcXH = Wire.read(); - AcXL = Wire.read(); - - AcYH = Wire.read(); - AcYL = Wire.read(); - - AcZH = Wire.read(); - AcZL = Wire.read(); - - // 0x41 (TEMP_OUT_H) & 0x42 (TEMP_OUT_L) - TmpH = Wire.read(); - TmpL = Wire.read(); - - - GyXH = Wire.read(); - GyXL = Wire.read(); - GyYH = Wire.read(); - GyYL = Wire.read(); - GyZH = Wire.read(); - GyZL = Wire.read(); - */ -} - - - -//Obtener data de la IMU. data debe ser de tamao 14 -void dataMPU() -{ - byte dataIn[14]; - word Sent; - (void)I2C_SelectSlave(MPU); - while(I2C_SendChar(0x3B) != ERR_OK); - while(I2C_RecvBlock(dataIn,14,&Sent) != ERR_OK); - - aceleracionX.HIGH.data = dataIn[0]; - aceleracionX.LOW.data = dataIn[1]; - aceleracionY.HIGH.data = dataIn[2]; - aceleracionY.LOW.data = dataIn[3]; - aceleracionZ.HIGH.data = dataIn[4]; - aceleracionZ.LOW.data = dataIn[5]; - tempInterna.HIGH.data = dataIn[6]; - tempInterna.LOW.data = dataIn[7]; - velAngularX.HIGH.data = dataIn[8]; - velAngularX.LOW.data = dataIn[9]; - velAngularY.HIGH.data = dataIn[10]; - velAngularY.LOW.data = dataIn[11]; - velAngularZ.HIGH.data = dataIn[12]; - velAngularZ.LOW.data = dataIn[13]; - - -} - -void initHMC6352()//Inicializa la IMU -{ - byte err; - byte reg = 0x6B; // PWR_MGMT_1 register - byte data = 0x00; // set to zero (wakes up the MPU-6050) - (void)I2C_SelectSlave(HMC6352); - - -} - -//Obtener data del magnetometro. data debe ser de tamao 2 -void dataHMC6352toArray(byte dataIn[]) -{ - word Sent; - (void)I2C_SelectSlave(HMC6352); - while(I2C_SendChar('A') != ERR_OK){}; - while(I2C_RecvBlock(dataIn,2,&Sent) != ERR_OK); - - angBrujula = dataIn; - -} - -//Obtener data del magnetometro. data debe ser de tamao 2 -void dataHMC6352() -{ - byte dataIn[2]; - word Sent; - (void)I2C_SelectSlave(HMC6352); - while(I2C_SendChar('A') != ERR_OK){}; - while(I2C_RecvBlock(dataIn,2,&Sent) != ERR_OK); - - angBrujula = dataIn; -} - -//Envio de data a PC -void dataTrans(byte dataOut[], byte tam) -{ - byte i = 0; - for(i = 0;i> 2; //Corrimiento - (void)ADC_GetChanValue8(6,&cargaBaterias.data); //Voltaje Bateras - cargaBaterias.data = cargaBaterias.data >> 2; - //Bit I/O - presenciaAgua.data = PresenciaAgua1_GetVal() + PresenciaAgua2_GetVal(); - - -} - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b036a0cf3ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b036a0cf3ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/b036a0cf3ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/d053abd23ac8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/d053abd23ac8001513b8f2fec7d3ea00 deleted file mode 100644 index 29168cb..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3d/d053abd23ac8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,389 +0,0 @@ -################################################################################ -# Automatically-generated file. Do not edit! -################################################################################ - --include ../makefile.local - -# Add inputs and outputs from these tool invocations to the build variables -C_SRCS_QUOTED += \ -"../Generated_Code/ADC.c" \ -"../Generated_Code/Aux_Int.c" \ -"../Generated_Code/CS1.c" \ -"../Generated_Code/Cpu.c" \ -"../Generated_Code/I2C.c" \ -"../Generated_Code/IO_Map.c" \ -"../Generated_Code/LedLight1.c" \ -"../Generated_Code/LedLight2.c" \ -"../Generated_Code/M1_ESC.c" \ -"../Generated_Code/M2_ESC.c" \ -"../Generated_Code/M3_ESC.c" \ -"../Generated_Code/M4_ESC.c" \ -"../Generated_Code/PE_Timer.c" \ -"../Generated_Code/PresenciaAgua1.c" \ -"../Generated_Code/PresenciaAgua2.c" \ -"../Generated_Code/RESET_INTERRUPT.c" \ -"../Generated_Code/S_PanCamera.c" \ -"../Generated_Code/S_TiltCamera.c" \ -"../Generated_Code/S_Wire.c" \ -"../Generated_Code/SerialCom.c" \ -"../Generated_Code/Vectors.c" \ -"../Generated_Code/sCom_In.c" \ -"../Generated_Code/sMCU_OK.c" \ -"../Generated_Code/sPC_OK.c" \ - -C_SRCS += \ -../Generated_Code/ADC.c \ -../Generated_Code/Aux_Int.c \ -../Generated_Code/CS1.c \ -../Generated_Code/Cpu.c \ -../Generated_Code/I2C.c \ -../Generated_Code/IO_Map.c \ -../Generated_Code/LedLight1.c \ -../Generated_Code/LedLight2.c \ -../Generated_Code/M1_ESC.c \ -../Generated_Code/M2_ESC.c \ -../Generated_Code/M3_ESC.c \ -../Generated_Code/M4_ESC.c \ -../Generated_Code/PE_Timer.c \ -../Generated_Code/PresenciaAgua1.c \ -../Generated_Code/PresenciaAgua2.c \ -../Generated_Code/RESET_INTERRUPT.c \ -../Generated_Code/S_PanCamera.c \ -../Generated_Code/S_TiltCamera.c \ -../Generated_Code/S_Wire.c \ -../Generated_Code/SerialCom.c \ -../Generated_Code/Vectors.c \ -../Generated_Code/sCom_In.c \ -../Generated_Code/sMCU_OK.c \ -../Generated_Code/sPC_OK.c \ - -OBJS += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -OBJS_QUOTED += \ -"./Generated_Code/ADC_c.obj" \ -"./Generated_Code/Aux_Int_c.obj" \ -"./Generated_Code/CS1_c.obj" \ -"./Generated_Code/Cpu_c.obj" \ -"./Generated_Code/I2C_c.obj" \ -"./Generated_Code/IO_Map_c.obj" \ -"./Generated_Code/LedLight1_c.obj" \ -"./Generated_Code/LedLight2_c.obj" \ -"./Generated_Code/M1_ESC_c.obj" \ -"./Generated_Code/M2_ESC_c.obj" \ -"./Generated_Code/M3_ESC_c.obj" \ -"./Generated_Code/M4_ESC_c.obj" \ -"./Generated_Code/PE_Timer_c.obj" \ -"./Generated_Code/PresenciaAgua1_c.obj" \ -"./Generated_Code/PresenciaAgua2_c.obj" \ -"./Generated_Code/RESET_INTERRUPT_c.obj" \ -"./Generated_Code/S_PanCamera_c.obj" \ -"./Generated_Code/S_TiltCamera_c.obj" \ -"./Generated_Code/S_Wire_c.obj" \ -"./Generated_Code/SerialCom_c.obj" \ -"./Generated_Code/Vectors_c.obj" \ -"./Generated_Code/sCom_In_c.obj" \ -"./Generated_Code/sMCU_OK_c.obj" \ -"./Generated_Code/sPC_OK_c.obj" \ - -C_DEPS += \ -./Generated_Code/ADC_c.d \ -./Generated_Code/Aux_Int_c.d \ -./Generated_Code/CS1_c.d \ -./Generated_Code/Cpu_c.d \ -./Generated_Code/I2C_c.d \ -./Generated_Code/IO_Map_c.d \ -./Generated_Code/LedLight1_c.d \ -./Generated_Code/LedLight2_c.d \ -./Generated_Code/M1_ESC_c.d \ -./Generated_Code/M2_ESC_c.d \ -./Generated_Code/M3_ESC_c.d \ -./Generated_Code/M4_ESC_c.d \ -./Generated_Code/PE_Timer_c.d \ -./Generated_Code/PresenciaAgua1_c.d \ -./Generated_Code/PresenciaAgua2_c.d \ -./Generated_Code/RESET_INTERRUPT_c.d \ -./Generated_Code/S_PanCamera_c.d \ -./Generated_Code/S_TiltCamera_c.d \ -./Generated_Code/S_Wire_c.d \ -./Generated_Code/SerialCom_c.d \ -./Generated_Code/Vectors_c.d \ -./Generated_Code/sCom_In_c.d \ -./Generated_Code/sMCU_OK_c.d \ -./Generated_Code/sPC_OK_c.d \ - -OBJS_OS_FORMAT += \ -./Generated_Code/ADC_c.obj \ -./Generated_Code/Aux_Int_c.obj \ -./Generated_Code/CS1_c.obj \ -./Generated_Code/Cpu_c.obj \ -./Generated_Code/I2C_c.obj \ -./Generated_Code/IO_Map_c.obj \ -./Generated_Code/LedLight1_c.obj \ -./Generated_Code/LedLight2_c.obj \ -./Generated_Code/M1_ESC_c.obj \ -./Generated_Code/M2_ESC_c.obj \ -./Generated_Code/M3_ESC_c.obj \ -./Generated_Code/M4_ESC_c.obj \ -./Generated_Code/PE_Timer_c.obj \ -./Generated_Code/PresenciaAgua1_c.obj \ -./Generated_Code/PresenciaAgua2_c.obj \ -./Generated_Code/RESET_INTERRUPT_c.obj \ -./Generated_Code/S_PanCamera_c.obj \ -./Generated_Code/S_TiltCamera_c.obj \ -./Generated_Code/S_Wire_c.obj \ -./Generated_Code/SerialCom_c.obj \ -./Generated_Code/Vectors_c.obj \ -./Generated_Code/sCom_In_c.obj \ -./Generated_Code/sMCU_OK_c.obj \ -./Generated_Code/sPC_OK_c.obj \ - -C_DEPS_QUOTED += \ -"./Generated_Code/ADC_c.d" \ -"./Generated_Code/Aux_Int_c.d" \ -"./Generated_Code/CS1_c.d" \ -"./Generated_Code/Cpu_c.d" \ -"./Generated_Code/I2C_c.d" \ -"./Generated_Code/IO_Map_c.d" \ -"./Generated_Code/LedLight1_c.d" \ -"./Generated_Code/LedLight2_c.d" \ -"./Generated_Code/M1_ESC_c.d" \ -"./Generated_Code/M2_ESC_c.d" \ -"./Generated_Code/M3_ESC_c.d" \ -"./Generated_Code/M4_ESC_c.d" \ -"./Generated_Code/PE_Timer_c.d" \ -"./Generated_Code/PresenciaAgua1_c.d" \ -"./Generated_Code/PresenciaAgua2_c.d" \ -"./Generated_Code/RESET_INTERRUPT_c.d" \ -"./Generated_Code/S_PanCamera_c.d" \ -"./Generated_Code/S_TiltCamera_c.d" \ -"./Generated_Code/S_Wire_c.d" \ -"./Generated_Code/SerialCom_c.d" \ -"./Generated_Code/Vectors_c.d" \ -"./Generated_Code/sCom_In_c.d" \ -"./Generated_Code/sMCU_OK_c.d" \ -"./Generated_Code/sPC_OK_c.d" \ - - -# Each subdirectory must supply rules for building sources it contributes -Generated_Code/ADC_c.obj: ../Generated_Code/ADC.c - @echo 'Building file: $<' - @echo 'Executing target #7 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/ADC.args" -o "Generated_Code/ADC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/%.d: ../Generated_Code/%.c - @echo 'Regenerating dependency file: $@' - - @echo ' ' - -Generated_Code/Aux_Int_c.obj: ../Generated_Code/Aux_Int.c - @echo 'Building file: $<' - @echo 'Executing target #8 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Aux_Int.args" -o "Generated_Code/Aux_Int_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/CS1_c.obj: ../Generated_Code/CS1.c - @echo 'Building file: $<' - @echo 'Executing target #9 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/CS1.args" -o "Generated_Code/CS1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Cpu_c.obj: ../Generated_Code/Cpu.c - @echo 'Building file: $<' - @echo 'Executing target #10 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Cpu.args" -o "Generated_Code/Cpu_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/I2C_c.obj: ../Generated_Code/I2C.c - @echo 'Building file: $<' - @echo 'Executing target #11 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/I2C.args" -o "Generated_Code/I2C_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/IO_Map_c.obj: ../Generated_Code/IO_Map.c - @echo 'Building file: $<' - @echo 'Executing target #12 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/IO_Map.args" -o "Generated_Code/IO_Map_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight1_c.obj: ../Generated_Code/LedLight1.c - @echo 'Building file: $<' - @echo 'Executing target #13 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight1.args" -o "Generated_Code/LedLight1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/LedLight2_c.obj: ../Generated_Code/LedLight2.c - @echo 'Building file: $<' - @echo 'Executing target #14 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/LedLight2.args" -o "Generated_Code/LedLight2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M1_ESC_c.obj: ../Generated_Code/M1_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #15 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M1_ESC.args" -o "Generated_Code/M1_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M2_ESC_c.obj: ../Generated_Code/M2_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #16 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M2_ESC.args" -o "Generated_Code/M2_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M3_ESC_c.obj: ../Generated_Code/M3_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #17 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M3_ESC.args" -o "Generated_Code/M3_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/M4_ESC_c.obj: ../Generated_Code/M4_ESC.c - @echo 'Building file: $<' - @echo 'Executing target #18 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/M4_ESC.args" -o "Generated_Code/M4_ESC_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PE_Timer_c.obj: ../Generated_Code/PE_Timer.c - @echo 'Building file: $<' - @echo 'Executing target #19 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PE_Timer.args" -o "Generated_Code/PE_Timer_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua1_c.obj: ../Generated_Code/PresenciaAgua1.c - @echo 'Building file: $<' - @echo 'Executing target #20 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua1.args" -o "Generated_Code/PresenciaAgua1_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/PresenciaAgua2_c.obj: ../Generated_Code/PresenciaAgua2.c - @echo 'Building file: $<' - @echo 'Executing target #21 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/PresenciaAgua2.args" -o "Generated_Code/PresenciaAgua2_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/RESET_INTERRUPT_c.obj: ../Generated_Code/RESET_INTERRUPT.c - @echo 'Building file: $<' - @echo 'Executing target #22 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/RESET_INTERRUPT.args" -o "Generated_Code/RESET_INTERRUPT_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_PanCamera_c.obj: ../Generated_Code/S_PanCamera.c - @echo 'Building file: $<' - @echo 'Executing target #23 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_PanCamera.args" -o "Generated_Code/S_PanCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_TiltCamera_c.obj: ../Generated_Code/S_TiltCamera.c - @echo 'Building file: $<' - @echo 'Executing target #24 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_TiltCamera.args" -o "Generated_Code/S_TiltCamera_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/S_Wire_c.obj: ../Generated_Code/S_Wire.c - @echo 'Building file: $<' - @echo 'Executing target #25 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/S_Wire.args" -o "Generated_Code/S_Wire_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/SerialCom_c.obj: ../Generated_Code/SerialCom.c - @echo 'Building file: $<' - @echo 'Executing target #26 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/SerialCom.args" -o "Generated_Code/SerialCom_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/Vectors_c.obj: ../Generated_Code/Vectors.c - @echo 'Building file: $<' - @echo 'Executing target #27 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/Vectors.args" -o "Generated_Code/Vectors_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sCom_In_c.obj: ../Generated_Code/sCom_In.c - @echo 'Building file: $<' - @echo 'Executing target #28 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sCom_In.args" -o "Generated_Code/sCom_In_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sMCU_OK_c.obj: ../Generated_Code/sMCU_OK.c - @echo 'Building file: $<' - @echo 'Executing target #29 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sMCU_OK.args" -o "Generated_Code/sMCU_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - -Generated_Code/sPC_OK_c.obj: ../Generated_Code/sPC_OK.c - @echo 'Building file: $<' - @echo 'Executing target #30 $<' - @echo 'Invoking: ColdFire Compiler' - "$(CF_ToolsDirEnv)/mwccmcf" @@"Generated_Code/sPC_OK.args" -o "Generated_Code/sPC_OK_c.obj" "$<" -MD -gccdep - @echo 'Finished building: $<' - @echo ' ' - - diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10f999c36fc40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10f999c36fc40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10f999c36fc40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/206f325e66c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/206f325e66c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/206f325e66c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/507df28136c8001513b8f2fec7d3ea00 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/507df28136c8001513b8f2fec7d3ea00 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/507df28136c8001513b8f2fec7d3ea00 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/806ef15d66c40015180fe241a6b5bfe5 b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/806ef15d66c40015180fe241a6b5bfe5 deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/806ef15d66c40015180fe241a6b5bfe5 +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80f0d868d2c5001515acf159be79a4ca b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80f0d868d2c5001515acf159be79a4ca deleted file mode 100644 index 1bea972..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80f0d868d2c5001515acf159be79a4ca +++ /dev/null @@ -1,60 +0,0 @@ --sym full --msgstyle parseable --proc 51QE --lavender model=ewl ,print=int ,scan=int ,io=raw --c --nostdinc --nosyspath --enc ascii --i -"$(ProjDirPath)/Project_Headers" --i -"$(ProjDirPath)/Project_Settings/Startup_Code" --i -"$(ProjDirPath)/Generated_Code" --i -"$(ProjDirPath)/Sources" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/hcs08_compatibility" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_C/include/sys" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/ewl/EWL_Runtime/Runtime_ColdFire/Source" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/include" --I- --I"$(MCUToolsBaseDirEnv)/ColdFire_Support/derivatives/device/asm_include" --I- --I"$(MCUToolsBaseDirEnv)/ProcessorExpert/lib/MCF/iofiles" --warn illpragmas --warn unwanted --warn extended --warn hidevirtual --warn implicitconv --warn unusedarg --warn unusedvar --warn extracomma --warn emptydecl --warn structclass --opt level=0 --opt space --ipa off --inline on --align coldfire --model nearRelCode --model farData --fp soft --nocoloring --noscheduling --nopeephole --sdata all --requireprotos --bool off --Cpp_Exceptions off --RTTI off --char unsigned --str nopool --str reuse --define CONSOLE_IO_SUPPORT=1 \ No newline at end of file diff --git a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/903ec1ab59c4001515648e1660054a1a b/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/903ec1ab59c4001515648e1660054a1a deleted file mode 100644 index 0348ede..0000000 --- a/MCU Firmware/.metadata/.plugins/org.eclipse.core.resources/.history/3e/903ec1ab59c4001515648e1660054a1a +++ /dev/null @@ -1,22805 +0,0 @@ - - -
- X-Sub MCU Firmware - ddtdanilo - 76 - 2016-01-26 - Eclipse IDE - 1.9.2.RT6_b1446-0504 -
- - main - Sources - Generated_Code - Documentation - - Project_Settings - Generated_Code - - 3 - 3 - 3 - true - false - true - 0 - false - false - true - false - true - 116 - true - false - true - CLASSIC - true - true - false - - LINKED - - - - - Referenced_Components - 76 - Beans - true - - - MCF51QE128_80 - Cpu - 4 - true - ALWAYS_WRITE - CPU_CHIP2 - - -