diff --git a/Project.toml b/Project.toml index 2ddcb42..339feb8 100644 --- a/Project.toml +++ b/Project.toml @@ -4,6 +4,7 @@ authors = ["Wataru Otsubo "] version = "0.2.0" [deps] +AutoHashEquals = "15f4f7f2-30c1-5605-9d31-71845cf9641f" CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965" DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" @@ -12,6 +13,7 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9" +StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" [weakdeps] @@ -21,12 +23,14 @@ InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" PSBoardDataBaseInteractiveUtilsExt = "InteractiveUtils" [compat] +AutoHashEquals = "2.2" CSV = "0.10" DBInterface = "2" DataFrames = "1" Documenter = "1" Downloads = "1" SQLite = "1" +StaticArrays = "1.9" Tables = "1" [extras] diff --git a/src/PSBoardDataBase.jl b/src/PSBoardDataBase.jl index 71bec98..1ab8b2b 100644 --- a/src/PSBoardDataBase.jl +++ b/src/PSBoardDataBase.jl @@ -9,6 +9,7 @@ using Dates include("parse_qaqc_master_log.jl") include("parse_clock.jl") +include("SlaveLogParser.jl") include("create_table.jl") include("download_csv.jl") diff --git a/src/SlaveLogParser.jl b/src/SlaveLogParser.jl new file mode 100644 index 0000000..6f1429e --- /dev/null +++ b/src/SlaveLogParser.jl @@ -0,0 +1,361 @@ +module SlaveLogParser + +using StaticArrays +using AutoHashEquals + +const HEADER_QSPIP_START = "=============== Test QAPIp Start ===============" +const HEADER_POWER_START = "=============== Test Power Start ===============" +const HEADER_ASDTP_START = "=============== Test ASDTP Start ===============" +const HEADER_RECOV_START = "=============== Test Recov Start ===============" +HEADER_STARTS = + [HEADER_QSPIP_START, HEADER_POWER_START, HEADER_ASDTP_START, HEADER_RECOV_START] + +""" +Indicate parser state. +Default is `MODE_NONE`. +In `MODE_NONE`, each line is feeded into parser to detect the start of each section. +""" +@enum SlaveLogSection begin + MODE_NONE + MODE_QSPIP + MODE_POWER + MODE_ASDTP + MODE_RECOV +end + +struct PowerResult + result_3v3d::Float64 + result_3v3a::Float64 + result_n3va::Float64 + fpga_temp::Float64 + + result::Bool +end + +struct SlaveLogResult end + +""" + get_psbid_runid_from_filename(filename::AbstractString)::Tuple{Int64,Int64,Bool} + +Extract info from slave log filename. +""" +function get_psbid_runid_from_filename(filename::AbstractString)::Tuple{Int64, Int64, Bool} + main, _ext = splitext(filename) + parts = split(main, '_') + psbid = parse(Int64, parts[1]) + runid = parse(Int64, parts[2]) + islongrun = if length(parts) == 3 + true + else + false + end + + (psbid, runid, islongrun) +end + +function is_valid_slavelog(filename::AbstractString)::Bool + error("not yet implemented") +end + +""" + detect_mode_start(line::AbstractString) + +Detect [`SlaveLogSection`](@ref) from section starting header line. +If the line doesn't match any section, returns `nothing`. +""" +function detect_mode_start(line::AbstractString) + if line == HEADER_QSPIP_START + MODE_QSPIP + elseif line == HEADER_POWER_START + MODE_POWER + elseif line == HEADER_ASDTP_START + MODE_ASDTP + elseif line == HEADER_RECOV_START + MODE_RECOV + else + nothing + end +end + +""" + detect_mode_start!(mode::SlaveLogSection, line::AbstractString) + +Detect mode from the `line` and update `mode`. +""" +function detect_mode_start(mode::SlaveLogSection, line::AbstractString) + newmode = detect_mode_start(line) + if !isnothing(newmode) + mode = newmode + end + mode +end + +""" + parse_qspip_section(lines::Base.Iterators.Stateful) + +Parse QSPIp section of given stateful iterator of log. + +# Args +- `lines`: Stateful iterator of slave log file lines +""" +function parse_qspip_section!(lines::Base.Iterators.Stateful) + # TODO + nothing +end + +""" + parse_power_section(lines::Base.Iterators.Stateful) + +Parse Power section of given stateful iterator of log. + +# Args +- `lines`: Stateful iterator of slave log file lines +""" +function parse_power_section!(lines::Base.Iterators.Stateful) + # TODO + nothing +end + +""" +Measurement result for asic in asdtp test. +""" +@auto_hash_equals struct AsdtpMeasurement + before::Float64 + current::Float64 + next::Float64 +end + +AsdtpMeasurement(x::NTuple{3, <:Real}) = AsdtpMeasurement(x...) + +function Base.parse(::Type{AsdtpMeasurement}, s::AbstractString) + v = split(s, ':') + @assert length(v) == 3 + AsdtpMeasurement(parse(Float64, v[1]), parse(Float64, v[2]), parse(Float64, v[3])) +end + +@auto_hash_equals struct AsdtpResult + reconfig_done::Int64 + always_hit_flag::Int64 + autoreconfig::Union{Bool, Missing} + asdtp_main::Union{Vector{Vector{AsdtpMeasurement}}, Missing} + asdtp_reset::Int64 + asdtp_total::Int64 + reconfig_done_2::Int64 + always_hit_flag_2::Int64 + si_done::UInt64 + lolb_in::UInt64 + ppconfig_done::UInt64 + ppconfig_error::UInt64 + pllld_fail_counter::UInt64 + ppconfig_fail_counter::UInt64 + pp_pllds::MVector{8, UInt32} +end + +""" + parse_asdtp_section(lines::Base.Iterators.Stateful) + +Parse ASDTP section of given stateful iterator of log. + +# Args +- `lines`: Stateful iterator of slave log file lines +""" +function parse_asdtp_section!(lines::Base.Iterators.Stateful) + line = popfirst!(lines) + result_reconfig_done = let + m = match(r"^reconfig_done = (\d+)$", line) + parse(Int64, m[1]) + end + line = popfirst!(lines) + result_always_hit_flag = let + m = match(r"^always_hit_flag = (\d+)$", line) + parse(Int64, m[1]) + end + line = popfirst!(lines) + result_autoreconfig = if line == "Autoreconfig done" + true + elseif line == "Autoreconfig fail" + false + else + missing + end + + result_asdtp_main = if !ismissing(result_autoreconfig) && result_autoreconfig + line_count = 0 + line_count += 1 + results = map(_ -> AsdtpMeasurement[], 1:8) + for asic_id in 1:8 + header_line = "----PP$(asic_id)----" + while line != header_line + line = popfirst!(lines) + line_count += 1 + end + for _ in 1:32 + line = popfirst!(lines) + line_count += 1 + mes = parse(AsdtpMeasurement, line) + push!(results[asic_id], mes) + end + end + @assert length(results[1]) == 32 "unexpected length: $(length(results[1]))" + + line = popfirst!(lines) + @assert line == "100" + results + else + missing + end + + line = popfirst!(lines) + result_asdtp_reset, result_asdtp_total = let + m = match(r"^ASDTP : (\d+) times reset : result = (\d+)$", line) + parse(Int64, m[1]), parse(Int64, m[2]) + end + line = popfirst!(lines) + result_reconfig_done_2 = let + m = match(r"^reconfig_done = (\d+)$", line) + parse(Int64, m[1]) + end + line = popfirst!(lines) + result_always_hit_flag_2 = let + m = match(r"^always_hit_flag = (\d+)$", line) + parse(Int64, m[1]) + end + line = popfirst!(lines) + @assert line == "" + + line = popfirst!(lines) + @assert line == "------- Done check -------" "actual line: $line" + line = popfirst!(lines) + result_si_done = let + m = match(r"^Si_done = (0x[[:xdigit:]]+)$", line) + parse(UInt64, m[1]) + end + line = popfirst!(lines) + result_lolb_in = let + m = match(r"^LOLB_in = (0x[[:xdigit:]]+)$", line) + parse(UInt64, m[1]) + end + line = popfirst!(lines) + result_ppconfig_done = let + m = match(r"^PPconfig_done = (0x[[:xdigit:]]+)$", line) + parse(UInt64, m[1]) + end + line = popfirst!(lines) + result_ppconfig_error = let + m = match(r"^PPconfig_error = (0x[[:xdigit:]]+)$", line) + parse(UInt64, m[1]) + end + line = popfirst!(lines) + result_pllld_fail_counter = let + m = match(r"^PLLLD_fail_counter = (0x[[:xdigit:]]+)$", line) + parse(UInt64, m[1]) + end + line = popfirst!(lines) + result_ppconfig_fail_counter = let + m = match(r"^PPconfig_fail_counter = (0x[[:xdigit:]]+)$", line) + parse(UInt64, m[1]) + end + result_pp_pllds = MVector{8, UInt32}(undef) + for ppid in 1:8 + line = popfirst!(lines) + m = match(Regex("^PP$(ppid)_PLLLD = (0x[[:xdigit:]]+)\$"), line) + result_pp_pllds[ppid] = parse(UInt32, m[1]) + end + + AsdtpResult( + result_reconfig_done, + result_always_hit_flag, + result_autoreconfig, + result_asdtp_main, + result_asdtp_reset, + result_asdtp_total, + result_reconfig_done_2, + result_always_hit_flag_2, + result_si_done, + result_lolb_in, + result_ppconfig_done, + result_ppconfig_error, + result_pllld_fail_counter, + result_ppconfig_fail_counter, + result_pp_pllds, + ) +end + +""" + parse_qspip_section(lines::Base.Iterators.Stateful) + +Parse Recov section of given stateful iterator of log. + +# Args +- `lines`: Stateful iterator of slave log file lines + +# Return +- `nothing`: if failed to parse +- `true`: if successed +- `false` +""" +function parse_recov_section!(lines::Base.Iterators.Stateful) + line = popfirst!(lines) + if startswith("====")(line) + line = popfirst!(lines) + end + m = match(r"Test Recov Result = (\d+)", line) + if isnothing(m) + return nothing + else + return m[1] == "1" + end +end + +""" + parse_slavelog_file(filename::AbstractString) + +Main function to parse slave log file. +""" +function parse_slavelog_file(filename::AbstractString) + lines_iter = Iterators.Stateful(eachline(filename)) + + asdtp_results = Any[] + + mode::SlaveLogSection = MODE_NONE + # main loop + while !isempty(lines_iter) + # each sections + if mode == MODE_NONE + line = popfirst!(lines_iter) + mode = detect_mode_start(mode, line) + elseif mode == MODE_QSPIP + parse_qspip_section!(lines_iter) + mode = MODE_NONE + elseif mode == MODE_POWER + parse_power_section!(lines_iter) + mode = MODE_NONE + elseif mode == MODE_ASDTP + result = parse_asdtp_section!(lines_iter) + push!(asdtp_results, result) + mode = MODE_NONE + elseif mode == MODE_RECOV + parse_recov_section!(lines_iter) + mode = MODE_NONE + end + end + + @info "Finished" + return asdtp_results +end + +function eff99_count_map(asdtp_results) + # try(100) × channel(8) × channel(32) + @assert length(asdtp_results) == 100 + @assert length(asdtp_results[begin]) == 8 + @assert length(asdtp_results[begin][begin]) == 32 + map(1:8) do i_asic + map(1:32) do i_channel + sum(1:100) do i_try + asdtp_results[i_try][i_asic][i_channel] != AsdtpMeasurement(0, 1, 0) + end + end + end +end + +end diff --git a/test/input/.gitignore b/test/input/.gitignore index 4a3a8da..7679ae6 100644 --- a/test/input/.gitignore +++ b/test/input/.gitignore @@ -5,3 +5,6 @@ slavelogs/main/* !slavelogs/main/448_103_clk.txt !slavelogs/main/444_103_clk.txt !slavelogs/main/209_51_clk.txt +!slavelogs/main/525_244.txt +!slavelogs/main/525_245_longrun.txt +!slavelogs/main/430_100.txt diff --git a/test/input/slavelogs/main/430_100.txt b/test/input/slavelogs/main/430_100.txt new file mode 100644 index 0000000..9cef959 --- /dev/null +++ b/test/input/slavelogs/main/430_100.txt @@ -0,0 +1,2567 @@ + +=============== Test QAPIp Start =============== +PSBID :430 +set_address done +TX_mode set as bitbanging mode 2'b10 +SL_master done +initial setup done +device_id = c22018 +send command Write_enable +erace done +0 th read status = 0 +wip check ok +write data loop-> start_address = a00000 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 0 parameter write done + write data loop-> start_address = a00001 : data = 430 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00003 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00005 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00007 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00009 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0000b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0000d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0000f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00011 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00013 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 10 parameter write done + write data loop-> start_address = a00015 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00017 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00019 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0001b : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0001d : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0001f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00021 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00023 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00025 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00027 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 20 parameter write done + write data loop-> start_address = a00029 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0002b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0002d : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0002f : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00031 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00033 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00035 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00037 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00039 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0003b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 30 parameter write done + write data loop-> start_address = a0003d : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0003f : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00041 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00043 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00045 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00047 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00049 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0004b : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0004d : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0004f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 40 parameter write done + write data loop-> start_address = a00051 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00053 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00055 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00057 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00059 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0005b : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0005d : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0005f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00061 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00063 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 50 parameter write done + write data loop-> start_address = a00065 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00067 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00069 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0006b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0006d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0006f : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00071 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00073 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00075 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00077 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 60 parameter write done + write data loop-> start_address = a00079 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0007b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0007d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0007f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00081 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00083 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00085 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00087 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00089 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0008b : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 70 parameter write done + write data loop-> start_address = a0008d : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0008f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00091 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00093 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00095 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00097 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00099 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0009b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0009d : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0009f : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 80 parameter write done + write data loop-> start_address = a000a1 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a7 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a9 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ab : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ad : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000af : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b1 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 90 parameter write done + write data loop-> start_address = a000b5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b9 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000bb : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000bd : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000bf : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c3 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c5 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 100 parameter write done + write data loop-> start_address = a000c9 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000cb : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000cd : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000cf : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d5 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d7 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d9 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000db : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 110 parameter write done + write data loop-> start_address = a000dd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000df : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e1 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e3 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e4 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e8 : data = 0 : length = 0 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e8 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ea : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ec : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 120 parameter write done + write data loop-> start_address = a000ee : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f0 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f2 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f4 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f6 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f8 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000fa : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000fc : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000fe : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00100 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 130 parameter write done + write data loop-> start_address = a00102 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00104 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00106 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00108 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010a : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010d : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010f : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00110 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00111 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 140 parameter write done + write data loop-> start_address = a00112 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00113 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00114 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00115 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00116 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00117 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00118 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00119 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 150 parameter write done + write data loop-> start_address = a0011c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011d : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011e : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011f : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 0 parameter write done + write data loop-> start_address = a00120 : data = 430 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00122 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00124 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00126 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00128 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0012a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0012c : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0012e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00130 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00132 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 10 parameter write done + write data loop-> start_address = a00134 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00136 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00138 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0013a : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0013c : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0013e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00140 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00142 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00144 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00146 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 20 parameter write done + write data loop-> start_address = a00148 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0014a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0014c : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0014e : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00150 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00152 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00154 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00156 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00158 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0015a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 30 parameter write done + write data loop-> start_address = a0015c : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0015e : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00160 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00162 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00164 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00166 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00168 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0016a : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0016c : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0016e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 40 parameter write done + write data loop-> start_address = a00170 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00172 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00174 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00176 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00178 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0017a : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0017c : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0017e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00180 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00182 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 50 parameter write done + write data loop-> start_address = a00184 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00186 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00188 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0018a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0018c : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0018e : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00190 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00192 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00194 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00196 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 60 parameter write done + write data loop-> start_address = a00198 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0019a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0019c : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0019e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a0 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a2 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a4 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a8 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001aa : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 70 parameter write done + write data loop-> start_address = a001ac : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ae : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b0 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b2 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b4 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b8 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ba : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001bc : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001be : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 80 parameter write done + write data loop-> start_address = a001c0 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c2 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c4 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c6 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c8 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ca : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001cc : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ce : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d0 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d2 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 90 parameter write done + write data loop-> start_address = a001d4 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d8 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001da : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001dc : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001de : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e0 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e2 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e4 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 100 parameter write done + write data loop-> start_address = a001e8 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ea : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ec : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ee : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f0 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f2 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f4 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f6 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f8 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001fa : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 110 parameter write done + write data loop-> start_address = a001fc : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001fe : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00200 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00202 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00203 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00205 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00207 : data = 0 : length = 0 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00207 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00209 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0020b : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 120 parameter write done + write data loop-> start_address = a0020d : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0020f : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00211 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00213 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00215 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00217 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00219 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0021b : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0021d : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0021f : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 130 parameter write done + write data loop-> start_address = a00221 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00223 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00225 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00227 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00229 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022c : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022e : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022f : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00230 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 140 parameter write done + write data loop-> start_address = a00231 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00232 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00233 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00234 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00235 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00236 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00237 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00238 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00239 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 150 parameter write done + write data loop-> start_address = a0023b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023d : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023e : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 0 parameter write done + write data loop-> start_address = a0023f : data = 430 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00241 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00243 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00245 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00247 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00249 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0024b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0024d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0024f : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00251 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 10 parameter write done + write data loop-> start_address = a00253 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00255 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00257 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00259 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0025b : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0025d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0025f : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00261 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00263 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00265 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 20 parameter write done + write data loop-> start_address = a00267 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00269 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0026b : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0026d : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0026f : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00271 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00273 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00275 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00277 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00279 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 30 parameter write done + write data loop-> start_address = a0027b : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0027d : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0027f : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00281 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00283 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00285 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00287 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00289 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0028b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0028d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 40 parameter write done + write data loop-> start_address = a0028f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00291 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00293 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00295 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00297 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00299 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0029b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0029d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0029f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 50 parameter write done + write data loop-> start_address = a002a3 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a5 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a7 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ab : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ad : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002af : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b3 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b5 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 60 parameter write done + write data loop-> start_address = a002b7 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002bb : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002bd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002bf : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c1 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c3 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c9 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 70 parameter write done + write data loop-> start_address = a002cb : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002cd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002cf : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d1 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d3 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002db : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002dd : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 80 parameter write done + write data loop-> start_address = a002df : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e5 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e7 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002eb : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ed : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ef : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 90 parameter write done + write data loop-> start_address = a002f3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f7 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f9 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002fb : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002fd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ff : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00301 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00303 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00305 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 100 parameter write done + write data loop-> start_address = a00307 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00309 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0030b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0030d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0030f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00311 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00313 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00315 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00317 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00319 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 110 parameter write done + write data loop-> start_address = a0031b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0031d : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0031f : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00321 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00322 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00324 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00326 : data = 0 : length = 0 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00326 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00328 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0032a : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 120 parameter write done + write data loop-> start_address = a0032c : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0032e : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00330 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00332 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00334 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00336 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00338 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0033a : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0033c : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0033e : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 130 parameter write done + write data loop-> start_address = a00340 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00342 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00344 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00346 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00348 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034d : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034e : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034f : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 140 parameter write done + write data loop-> start_address = a00350 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00351 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00352 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00353 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00354 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00355 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00356 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00357 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00358 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00359 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 150 parameter write done + write data loop-> start_address = a0035a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0035b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0035c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +SL_master done +TX_mode set as bitbanging mode 2'b10 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test Power Start =============== +3V3D [V] = 3.43 +3V3A [V] = 2.91 +-3VA [V] = -2.97 +FPGA Temprature [C] = 42.49 +Elements Status(1'bQSPI,1'bSi5395Lock,1'bPPASIC_status,3'bSEU_status) = 0b110001 +Power Good(1V0A,1V2A,1V8A,1V0D,1V8D) = 0b11111 +channel 0: DAC [mV] = 70, ADC [mV] = 70 +channel 1: DAC [mV] = 70, ADC [mV] = 70 +channel 2: DAC [mV] = 70, ADC [mV] = 71 +channel 3: DAC [mV] = 70, ADC [mV] = 72 +channel 4: DAC [mV] = 70, ADC [mV] = 73 +channel 5: DAC [mV] = 70, ADC [mV] = 67 +channel 6: DAC [mV] = 70, ADC [mV] = 72 +channel 7: DAC [mV] = 70, ADC [mV] = 70 +channel 8: DAC [mV] = 70, ADC [mV] = 70 +channel 9: DAC [mV] = 70, ADC [mV] = 70 +channel a: DAC [mV] = 70, ADC [mV] = 69 +channel b: DAC [mV] = 70, ADC [mV] = 70 +channel c: DAC [mV] = 70, ADC [mV] = 67 +channel d: DAC [mV] = 70, ADC [mV] = 68 +channel e: DAC [mV] = 70, ADC [mV] = 70 +channel f: DAC [mV] = 70, ADC [mV] = 72 +Test Power Reseult = 1 + +=============== Test Clock Start =============== +10.000000000000000 0.000000 0.000000 +10.017857142857142 0.000000 0.000000 +10.035714285714286 0.000000 0.000000 +10.053571428571429 0.000000 0.000000 +10.071428571428571 0.000000 0.000000 +10.089285714285714 0.000000 0.000000 +10.107142857142858 0.000000 0.000000 +10.125000000000000 0.000000 0.000000 +10.142857142857142 0.000000 0.000000 +10.160714285714286 0.000000 0.000000 +10.178571428571429 0.000000 0.000000 +10.196428571428571 0.000000 0.000000 +10.214285714285714 0.000000 0.000000 +10.232142857142858 0.000000 0.000000 +10.250000000000000 0.000000 0.000000 +10.267857142857142 0.000000 0.000000 +10.285714285714286 0.000000 0.000000 +10.303571428571429 0.000000 0.000000 +10.321428571428571 0.000000 0.000000 +10.339285714285714 0.000000 0.000000 +10.357142857142858 0.000000 0.000000 +10.375000000000000 0.000000 0.000000 +10.392857142857142 0.000000 0.000000 +10.410714285714286 0.000000 0.000000 +10.428571428571429 0.000000 0.000000 +10.446428571428571 0.000000 0.000000 +10.464285714285714 0.000000 0.000000 +10.482142857142858 0.000000 0.000000 +10.500000000000000 0.000000 0.000000 +10.517857142857142 0.000000 0.000000 +10.535714285714286 0.000000 0.000000 +10.553571428571429 0.000000 0.000000 +10.571428571428571 0.000000 0.000000 +10.589285714285714 0.000000 0.000000 +10.607142857142858 0.000000 0.000000 +10.625000000000000 0.000000 0.000000 +10.642857142857142 0.000000 0.000000 +10.660714285714286 0.000000 0.000000 +10.678571428571429 0.000000 0.000000 +10.696428571428571 0.000000 0.000000 +10.714285714285714 0.000000 0.000000 +10.732142857142858 0.000000 0.000000 +10.750000000000000 0.000000 0.000000 +10.767857142857142 0.000000 0.000000 +10.785714285714286 0.000000 0.000000 +10.803571428571429 0.000000 0.000000 +10.821428571428571 0.000000 0.000000 +10.839285714285714 0.000000 0.000000 +10.857142857142858 0.000000 0.000000 +10.875000000000000 0.000000 0.000000 +10.892857142857142 0.000000 0.000000 +10.910714285714286 0.000000 0.000000 +10.928571428571429 0.000000 0.000000 +10.946428571428571 0.000000 0.000000 +10.964285714285714 0.000000 0.000000 +10.982142857142858 0.000000 0.000000 +11.000000000000000 0.000000 0.000000 +11.017857142857142 0.000000 0.000000 +11.035714285714286 0.000000 0.000000 +11.053571428571429 0.000000 0.000000 +11.071428571428571 0.000000 0.000000 +11.089285714285714 0.000000 0.000000 +11.107142857142858 0.000000 0.000000 +11.125000000000000 0.000000 0.000000 +11.142857142857142 0.000000 0.000000 +11.160714285714286 0.000000 0.000000 +11.178571428571429 0.000000 0.000000 +11.196428571428571 0.000000 0.000000 +11.214285714285714 0.000000 0.000000 +11.232142857142858 0.000000 0.000000 +11.250000000000000 0.000000 0.000000 +11.267857142857142 0.000000 0.000000 +11.285714285714286 0.000000 0.000000 +11.303571428571429 0.000000 0.000000 +11.321428571428571 0.000000 0.000000 +11.339285714285714 0.000000 0.000000 +11.357142857142858 0.000000 0.000000 +11.375000000000000 0.000000 0.000000 +11.392857142857142 0.000000 0.000000 +11.410714285714286 0.000000 0.000000 +11.428571428571429 0.000000 0.000000 +11.446428571428571 0.000000 0.000000 +11.464285714285714 0.000000 0.000000 +11.482142857142858 0.000000 0.000000 +11.500000000000000 0.000000 0.000000 +11.517857142857142 0.000000 0.000000 +11.535714285714286 0.000000 0.000000 +11.553571428571429 0.000000 0.000000 +11.571428571428571 0.000000 0.000000 +11.589285714285714 0.000000 0.000000 +11.607142857142858 0.000000 0.000000 +11.625000000000000 0.000000 0.000000 +11.642857142857142 0.000000 0.000000 +11.660714285714286 0.000000 0.000000 +11.678571428571429 0.000000 0.000000 +11.696428571428571 0.000000 0.000000 +11.714285714285714 0.000000 0.000000 +11.732142857142858 0.000000 0.000000 +11.750000000000000 0.000000 0.000000 +11.767857142857142 0.000000 0.000000 +11.785714285714286 1.000000 0.000000 +11.803571428571429 48.000000 0.000000 +11.821428571428571 467.000000 0.000000 +11.839285714285714 807.000000 0.000000 +11.857142857142858 995.000000 0.000000 +11.875000000000000 1000.000000 0.000000 +11.892857142857142 1000.000000 0.000000 +11.910714285714286 1000.000000 0.000000 +11.928571428571429 1000.000000 0.000000 +11.946428571428571 1000.000000 0.000000 +11.964285714285714 1000.000000 0.000000 +11.982142857142858 1000.000000 0.000000 +12.000000000000000 1000.000000 0.000000 +12.017857142857142 1000.000000 0.000000 +12.035714285714286 1000.000000 0.000000 +12.053571428571429 1000.000000 0.000000 +12.071428571428571 1000.000000 0.000000 +12.089285714285714 1000.000000 0.000000 +12.107142857142858 1000.000000 0.000000 +12.125000000000000 1000.000000 0.000000 +12.142857142857142 1000.000000 0.000000 +12.160714285714286 1000.000000 0.000000 +12.178571428571429 1000.000000 0.000000 +12.196428571428571 1000.000000 0.000000 +12.214285714285714 1000.000000 0.000000 +12.232142857142858 1000.000000 0.000000 +12.250000000000000 1000.000000 0.000000 +12.267857142857142 1000.000000 0.000000 +12.285714285714286 1000.000000 0.000000 +12.303571428571429 1000.000000 0.000000 +12.321428571428571 1000.000000 0.000000 +12.339285714285714 1000.000000 0.000000 +12.357142857142858 1000.000000 0.000000 +12.375000000000000 1000.000000 0.000000 +12.392857142857142 1000.000000 0.000000 +12.410714285714286 1000.000000 0.000000 +12.428571428571429 1000.000000 0.000000 +12.446428571428571 1000.000000 0.000000 +12.464285714285714 1000.000000 0.000000 +12.482142857142858 1000.000000 0.000000 +12.500000000000000 1000.000000 0.000000 +12.517857142857142 1000.000000 0.000000 +12.535714285714286 1000.000000 0.000000 +12.553571428571429 1000.000000 0.000000 +12.571428571428571 1000.000000 0.000000 +12.589285714285714 1000.000000 0.000000 +12.607142857142858 1000.000000 0.000000 +12.625000000000000 1000.000000 0.000000 +12.642857142857142 1000.000000 0.000000 +12.660714285714286 1000.000000 0.000000 +12.678571428571429 1000.000000 0.000000 +12.696428571428571 1000.000000 0.000000 +12.714285714285714 1000.000000 0.000000 +12.732142857142858 1000.000000 0.000000 +12.750000000000000 1000.000000 0.000000 +12.767857142857142 1000.000000 0.000000 +12.785714285714286 1000.000000 0.000000 +12.803571428571429 1000.000000 0.000000 +12.821428571428571 1000.000000 0.000000 +12.839285714285714 1000.000000 0.000000 +12.857142857142858 1000.000000 0.000000 +12.875000000000000 1000.000000 0.000000 +12.892857142857142 1000.000000 0.000000 +12.910714285714286 1000.000000 0.000000 +12.928571428571429 1000.000000 0.000000 +12.946428571428571 1000.000000 0.000000 +12.964285714285714 1000.000000 0.000000 +12.982142857142858 1000.000000 0.000000 +13.000000000000000 1000.000000 0.000000 +13.017857142857142 1000.000000 0.000000 +13.035714285714286 1000.000000 0.000000 +13.053571428571429 1000.000000 0.000000 +13.071428571428571 1000.000000 0.000000 +13.089285714285714 1000.000000 0.000000 +13.107142857142858 1000.000000 0.000000 +13.125000000000000 1000.000000 0.000000 +13.142857142857142 1000.000000 0.000000 +13.160714285714286 1000.000000 0.000000 +13.178571428571429 1000.000000 0.000000 +13.196428571428571 1000.000000 0.000000 +13.214285714285714 1000.000000 0.000000 +13.232142857142858 1000.000000 0.000000 +13.250000000000000 1000.000000 0.000000 +13.267857142857142 1000.000000 0.000000 +13.285714285714286 1000.000000 0.000000 +13.303571428571429 1000.000000 0.000000 +13.321428571428571 1000.000000 0.000000 +13.339285714285714 1000.000000 0.000000 +13.357142857142858 1000.000000 0.000000 +13.375000000000000 1000.000000 0.000000 +13.392857142857142 1000.000000 0.000000 +13.410714285714286 1000.000000 0.000000 +13.428571428571429 1000.000000 0.000000 +13.446428571428571 1000.000000 0.000000 +13.464285714285714 1000.000000 0.000000 +13.482142857142858 1000.000000 0.000000 +13.500000000000000 1000.000000 0.000000 +13.517857142857142 1000.000000 0.000000 +13.535714285714286 1000.000000 0.000000 +13.553571428571429 1000.000000 0.000000 +13.571428571428571 1000.000000 0.000000 +13.589285714285714 1000.000000 0.000000 +13.607142857142858 1000.000000 0.000000 +13.625000000000000 1000.000000 0.000000 +13.642857142857142 1000.000000 0.000000 +13.660714285714286 1000.000000 0.000000 +13.678571428571429 1000.000000 0.000000 +13.696428571428571 1000.000000 0.000000 +13.714285714285714 1000.000000 0.000000 +13.732142857142858 1000.000000 0.000000 +13.750000000000000 1000.000000 0.000000 +13.767857142857142 1000.000000 0.000000 +13.785714285714286 1000.000000 0.000000 +13.803571428571429 1000.000000 0.000000 +13.821428571428571 1000.000000 0.000000 +13.839285714285714 1000.000000 0.000000 +13.857142857142858 1000.000000 0.000000 +13.875000000000000 1000.000000 0.000000 +13.892857142857142 1000.000000 0.000000 +13.910714285714286 1000.000000 0.000000 +13.928571428571429 1000.000000 0.000000 +13.946428571428571 1000.000000 0.000000 +13.964285714285714 1000.000000 0.000000 +13.982142857142858 1000.000000 0.000000 +14.000000000000000 1000.000000 0.000000 +14.017857142857142 1000.000000 0.000000 +14.035714285714286 1000.000000 0.000000 +14.053571428571429 1000.000000 0.000000 +14.071428571428571 1000.000000 0.000000 +14.089285714285714 1000.000000 0.000000 +14.107142857142858 1000.000000 0.000000 +14.125000000000000 1000.000000 0.000000 +14.142857142857142 1000.000000 0.000000 +14.160714285714286 1000.000000 0.000000 +14.178571428571429 1000.000000 0.000000 +14.196428571428571 1000.000000 0.000000 +14.214285714285714 1000.000000 0.000000 +14.232142857142858 1000.000000 0.000000 +14.250000000000000 1000.000000 0.000000 +14.267857142857142 1000.000000 0.000000 +14.285714285714286 1000.000000 0.000000 +14.303571428571429 1000.000000 0.000000 +14.321428571428571 1000.000000 0.000000 +14.339285714285714 1000.000000 0.000000 +14.357142857142858 1000.000000 0.000000 +14.375000000000000 1000.000000 0.000000 +14.392857142857142 1000.000000 0.000000 +14.410714285714286 1000.000000 0.000000 +14.428571428571429 1000.000000 0.000000 +14.446428571428571 1000.000000 0.000000 +14.464285714285714 1000.000000 0.000000 +14.482142857142858 1000.000000 0.000000 +14.500000000000000 1000.000000 0.000000 +14.517857142857142 1000.000000 0.000000 +14.535714285714286 1000.000000 0.000000 +14.553571428571429 1000.000000 0.000000 +14.571428571428571 1000.000000 0.000000 +14.589285714285714 1000.000000 0.000000 +14.607142857142858 1000.000000 0.000000 +14.625000000000000 1000.000000 0.000000 +14.642857142857142 1000.000000 0.000000 +14.660714285714286 1000.000000 0.000000 +14.678571428571429 1000.000000 0.000000 +14.696428571428571 1000.000000 0.000000 +14.714285714285714 1000.000000 0.000000 +14.732142857142858 1000.000000 0.000000 +14.750000000000000 1000.000000 0.000000 +14.767857142857142 1000.000000 0.000000 +14.785714285714286 1000.000000 0.000000 +14.803571428571429 1000.000000 0.000000 +14.821428571428571 1000.000000 0.000000 +14.839285714285714 1000.000000 0.000000 +14.857142857142858 1000.000000 0.000000 +14.875000000000000 1000.000000 0.000000 +14.892857142857142 1000.000000 0.000000 +14.910714285714286 1000.000000 0.000000 +14.928571428571429 1000.000000 0.000000 +14.946428571428571 1000.000000 0.000000 +14.964285714285714 1000.000000 0.000000 +14.982142857142858 1000.000000 0.000000 +15.000000000000000 1000.000000 0.000000 +15.017857142857142 1000.000000 0.000000 +15.035714285714286 1000.000000 0.000000 +15.053571428571429 1000.000000 0.000000 +15.071428571428571 1000.000000 0.000000 +15.089285714285714 1000.000000 0.000000 +15.107142857142858 1000.000000 0.000000 +15.125000000000000 1000.000000 0.000000 +15.142857142857142 1000.000000 0.000000 +15.160714285714286 1000.000000 0.000000 +15.178571428571429 1000.000000 0.000000 +15.196428571428571 1000.000000 0.000000 +15.214285714285714 1000.000000 0.000000 +15.232142857142858 1000.000000 0.000000 +15.250000000000000 1000.000000 0.000000 +15.267857142857142 1000.000000 0.000000 +15.285714285714286 1000.000000 0.000000 +15.303571428571429 1000.000000 0.000000 +15.321428571428571 1000.000000 0.000000 +15.339285714285714 1000.000000 0.000000 +15.357142857142858 1000.000000 0.000000 +15.375000000000000 1000.000000 0.000000 +15.392857142857142 1000.000000 0.000000 +15.410714285714286 1000.000000 0.000000 +15.428571428571429 1000.000000 0.000000 +15.446428571428571 1000.000000 0.000000 +15.464285714285714 1000.000000 0.000000 +15.482142857142858 1000.000000 0.000000 +15.500000000000000 1000.000000 0.000000 +15.517857142857142 1000.000000 0.000000 +15.535714285714286 1000.000000 0.000000 +15.553571428571429 1000.000000 0.000000 +15.571428571428571 1000.000000 0.000000 +15.589285714285714 1000.000000 0.000000 +15.607142857142858 1000.000000 0.000000 +15.625000000000000 1000.000000 0.000000 +15.642857142857142 1000.000000 0.000000 +15.660714285714286 1000.000000 0.000000 +15.678571428571429 1000.000000 0.000000 +15.696428571428571 1000.000000 0.000000 +15.714285714285714 1000.000000 0.000000 +15.732142857142858 1000.000000 0.000000 +15.750000000000000 1000.000000 0.000000 +15.767857142857142 1000.000000 0.000000 +15.785714285714286 1000.000000 0.000000 +15.803571428571429 1000.000000 0.000000 +15.821428571428571 1000.000000 0.000000 +15.839285714285714 1000.000000 0.000000 +15.857142857142858 1000.000000 0.000000 +15.875000000000000 1000.000000 0.000000 +15.892857142857142 1000.000000 0.000000 +15.910714285714286 1000.000000 0.000000 +15.928571428571429 1000.000000 0.000000 +15.946428571428571 1000.000000 0.000000 +15.964285714285714 1000.000000 0.000000 +15.982142857142858 1000.000000 0.000000 +16.000000000000000 1000.000000 0.000000 +Test Clock Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 1 +always_hit_flag = 0 +Autoreconfig done +----PP1---- +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +----PP2---- +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +----PP3---- +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +----PP4---- +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +----PP5---- +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +----PP6---- +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +----PP7---- +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +----PP8---- +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +0 : 1: 0 +100 +ASDTP : 0 times reset : result = 1 +reconfig_done = 1 +always_hit_flag = 0 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x0 +PLLLD_fail_counter = 0x0 +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6001 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 diff --git a/test/input/slavelogs/main/525_244.txt b/test/input/slavelogs/main/525_244.txt new file mode 100644 index 0000000..8e06afa --- /dev/null +++ b/test/input/slavelogs/main/525_244.txt @@ -0,0 +1,2302 @@ + +=============== Test QAPIp Start =============== +PSBID :525 +set_address done +TX_mode set as bitbanging mode 2'b10 +SL_master done +initial setup done +device_id = c22018 +send command Write_enable +erace done +0 th read status = 0 +wip check ok +write data loop-> start_address = a00000 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 0 parameter write done + write data loop-> start_address = a00001 : data = 525 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00003 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00005 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00007 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00009 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0000b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0000d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0000f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00011 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00013 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 10 parameter write done + write data loop-> start_address = a00015 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00017 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00019 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0001b : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0001d : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0001f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00021 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00023 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00025 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00027 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 20 parameter write done + write data loop-> start_address = a00029 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0002b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0002d : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0002f : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00031 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00033 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00035 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00037 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00039 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0003b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 30 parameter write done + write data loop-> start_address = a0003d : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0003f : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00041 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00043 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00045 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00047 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00049 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0004b : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0004d : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0004f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 40 parameter write done + write data loop-> start_address = a00051 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00053 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00055 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00057 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00059 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0005b : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0005d : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0005f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00061 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00063 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 50 parameter write done + write data loop-> start_address = a00065 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00067 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00069 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0006b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0006d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0006f : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00071 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00073 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00075 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00077 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 60 parameter write done + write data loop-> start_address = a00079 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0007b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0007d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0007f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00081 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00083 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00085 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00087 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00089 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0008b : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 70 parameter write done + write data loop-> start_address = a0008d : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0008f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00091 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00093 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00095 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00097 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00099 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0009b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0009d : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0009f : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 80 parameter write done + write data loop-> start_address = a000a1 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a7 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a9 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ab : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ad : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000af : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b1 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 90 parameter write done + write data loop-> start_address = a000b5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b9 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000bb : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000bd : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000bf : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c3 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c5 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 100 parameter write done + write data loop-> start_address = a000c9 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000cb : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000cd : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000cf : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d5 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d7 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d9 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000db : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 110 parameter write done + write data loop-> start_address = a000dd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000df : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e1 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e3 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e4 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e8 : data = 0 : length = 0 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e8 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ea : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ec : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 120 parameter write done + write data loop-> start_address = a000ee : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f0 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f2 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f4 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f6 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f8 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000fa : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000fc : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000fe : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00100 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 130 parameter write done + write data loop-> start_address = a00102 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00104 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00106 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00108 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010a : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010d : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010f : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00110 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00111 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 140 parameter write done + write data loop-> start_address = a00112 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00113 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00114 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00115 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00116 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00117 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00118 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00119 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 150 parameter write done + write data loop-> start_address = a0011c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011d : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011e : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011f : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 0 parameter write done + write data loop-> start_address = a00120 : data = 525 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00122 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00124 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00126 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00128 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0012a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0012c : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0012e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00130 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00132 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 10 parameter write done + write data loop-> start_address = a00134 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00136 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00138 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0013a : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0013c : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0013e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00140 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00142 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00144 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00146 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 20 parameter write done + write data loop-> start_address = a00148 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0014a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0014c : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0014e : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00150 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00152 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00154 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00156 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00158 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0015a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 30 parameter write done + write data loop-> start_address = a0015c : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0015e : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00160 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00162 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00164 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00166 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00168 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0016a : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0016c : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0016e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 40 parameter write done + write data loop-> start_address = a00170 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00172 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00174 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00176 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00178 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0017a : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0017c : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0017e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00180 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00182 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 50 parameter write done + write data loop-> start_address = a00184 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00186 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00188 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0018a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0018c : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0018e : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00190 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00192 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00194 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00196 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 60 parameter write done + write data loop-> start_address = a00198 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0019a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0019c : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0019e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a0 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a2 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a4 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a8 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001aa : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 70 parameter write done + write data loop-> start_address = a001ac : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ae : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b0 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b2 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b4 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b8 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ba : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001bc : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001be : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 80 parameter write done + write data loop-> start_address = a001c0 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c2 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c4 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c6 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c8 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ca : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001cc : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ce : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d0 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d2 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 90 parameter write done + write data loop-> start_address = a001d4 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d8 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001da : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001dc : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001de : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e0 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e2 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e4 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 100 parameter write done + write data loop-> start_address = a001e8 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ea : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ec : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ee : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f0 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f2 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f4 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f6 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f8 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001fa : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 110 parameter write done + write data loop-> start_address = a001fc : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001fe : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00200 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00202 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00203 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00205 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00207 : data = 0 : length = 0 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00207 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00209 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0020b : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 120 parameter write done + write data loop-> start_address = a0020d : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0020f : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00211 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00213 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00215 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00217 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00219 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0021b : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0021d : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0021f : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 130 parameter write done + write data loop-> start_address = a00221 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00223 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00225 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00227 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00229 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022c : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022e : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022f : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00230 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 140 parameter write done + write data loop-> start_address = a00231 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00232 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00233 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00234 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00235 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00236 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00237 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00238 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00239 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 150 parameter write done + write data loop-> start_address = a0023b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023d : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023e : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 0 parameter write done + write data loop-> start_address = a0023f : data = 525 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00241 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00243 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00245 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00247 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00249 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0024b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0024d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0024f : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00251 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 10 parameter write done + write data loop-> start_address = a00253 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00255 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00257 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00259 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0025b : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0025d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0025f : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00261 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00263 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00265 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 20 parameter write done + write data loop-> start_address = a00267 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00269 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0026b : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0026d : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0026f : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00271 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00273 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00275 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00277 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00279 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 30 parameter write done + write data loop-> start_address = a0027b : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0027d : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0027f : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00281 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00283 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00285 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00287 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00289 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0028b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0028d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 40 parameter write done + write data loop-> start_address = a0028f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00291 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00293 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00295 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00297 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00299 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0029b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0029d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0029f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 50 parameter write done + write data loop-> start_address = a002a3 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a5 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a7 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ab : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ad : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002af : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b3 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b5 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 60 parameter write done + write data loop-> start_address = a002b7 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002bb : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002bd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002bf : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c1 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c3 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c9 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 70 parameter write done + write data loop-> start_address = a002cb : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002cd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002cf : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d1 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d3 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002db : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002dd : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 80 parameter write done + write data loop-> start_address = a002df : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e5 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e7 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002eb : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ed : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ef : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 90 parameter write done + write data loop-> start_address = a002f3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f7 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f9 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002fb : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002fd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ff : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00301 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00303 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00305 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 100 parameter write done + write data loop-> start_address = a00307 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00309 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0030b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0030d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0030f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00311 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00313 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00315 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00317 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00319 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 110 parameter write done + write data loop-> start_address = a0031b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0031d : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0031f : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00321 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00322 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00324 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00326 : data = 0 : length = 0 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00326 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00328 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0032a : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 120 parameter write done + write data loop-> start_address = a0032c : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0032e : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00330 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00332 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00334 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00336 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00338 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0033a : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0033c : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0033e : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 130 parameter write done + write data loop-> start_address = a00340 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00342 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00344 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00346 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00348 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034d : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034e : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034f : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 140 parameter write done + write data loop-> start_address = a00350 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00351 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00352 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00353 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00354 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00355 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00356 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00357 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00358 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00359 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 150 parameter write done + write data loop-> start_address = a0035a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0035b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0035c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +SL_master done +TX_mode set as bitbanging mode 2'b10 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test Power Start =============== +3V3D [V] = 3.47 +3V3A [V] = 2.91 +-3VA [V] = -3.01 +FPGA Temprature [C] = 42.98 +Elements Status(1'bQSPI,1'bSi5395Lock,1'bPPASIC_status,3'bSEU_status) = 0b111000 +Power Good(1V0A,1V2A,1V8A,1V0D,1V8D) = 0b11111 +channel 0: DAC [mV] = 70, ADC [mV] = 70 +channel 1: DAC [mV] = 70, ADC [mV] = 67 +channel 2: DAC [mV] = 70, ADC [mV] = 69 +channel 3: DAC [mV] = 70, ADC [mV] = 70 +channel 4: DAC [mV] = 70, ADC [mV] = 68 +channel 5: DAC [mV] = 70, ADC [mV] = 70 +channel 6: DAC [mV] = 70, ADC [mV] = 68 +channel 7: DAC [mV] = 70, ADC [mV] = 72 +channel 8: DAC [mV] = 70, ADC [mV] = 68 +channel 9: DAC [mV] = 70, ADC [mV] = 69 +channel a: DAC [mV] = 70, ADC [mV] = 70 +channel b: DAC [mV] = 70, ADC [mV] = 71 +channel c: DAC [mV] = 70, ADC [mV] = 70 +channel d: DAC [mV] = 70, ADC [mV] = 69 +channel e: DAC [mV] = 70, ADC [mV] = 72 +channel f: DAC [mV] = 70, ADC [mV] = 72 +Test Power Reseult = 1 + +=============== Test Clock Start =============== +10.000000000000000 0.000000 0.000000 +10.017857142857142 0.000000 0.000000 +10.035714285714286 0.000000 0.000000 +10.053571428571429 0.000000 0.000000 +10.071428571428571 0.000000 0.000000 +10.089285714285714 0.000000 0.000000 +10.107142857142858 0.000000 0.000000 +10.125000000000000 0.000000 0.000000 +10.142857142857142 0.000000 0.000000 +10.160714285714286 0.000000 0.000000 +10.178571428571429 0.000000 0.000000 +10.196428571428571 0.000000 0.000000 +10.214285714285714 0.000000 0.000000 +10.232142857142858 0.000000 0.000000 +10.250000000000000 0.000000 0.000000 +10.267857142857142 0.000000 0.000000 +10.285714285714286 0.000000 0.000000 +10.303571428571429 0.000000 0.000000 +10.321428571428571 0.000000 0.000000 +10.339285714285714 0.000000 0.000000 +10.357142857142858 0.000000 0.000000 +10.375000000000000 0.000000 0.000000 +10.392857142857142 0.000000 0.000000 +10.410714285714286 0.000000 0.000000 +10.428571428571429 0.000000 0.000000 +10.446428571428571 0.000000 0.000000 +10.464285714285714 0.000000 0.000000 +10.482142857142858 0.000000 0.000000 +10.500000000000000 0.000000 0.000000 +10.517857142857142 0.000000 0.000000 +10.535714285714286 0.000000 0.000000 +10.553571428571429 0.000000 0.000000 +10.571428571428571 0.000000 0.000000 +10.589285714285714 0.000000 0.000000 +10.607142857142858 0.000000 0.000000 +10.625000000000000 0.000000 0.000000 +10.642857142857142 0.000000 0.000000 +10.660714285714286 0.000000 0.000000 +10.678571428571429 0.000000 0.000000 +10.696428571428571 0.000000 0.000000 +10.714285714285714 0.000000 0.000000 +10.732142857142858 0.000000 0.000000 +10.750000000000000 0.000000 0.000000 +10.767857142857142 0.000000 0.000000 +10.785714285714286 0.000000 0.000000 +10.803571428571429 0.000000 0.000000 +10.821428571428571 0.000000 0.000000 +10.839285714285714 0.000000 0.000000 +10.857142857142858 0.000000 0.000000 +10.875000000000000 0.000000 0.000000 +10.892857142857142 0.000000 0.000000 +10.910714285714286 0.000000 0.000000 +10.928571428571429 0.000000 0.000000 +10.946428571428571 0.000000 0.000000 +10.964285714285714 0.000000 0.000000 +10.982142857142858 0.000000 0.000000 +11.000000000000000 0.000000 0.000000 +11.017857142857142 0.000000 0.000000 +11.035714285714286 0.000000 0.000000 +11.053571428571429 0.000000 0.000000 +11.071428571428571 0.000000 0.000000 +11.089285714285714 0.000000 0.000000 +11.107142857142858 0.000000 0.000000 +11.125000000000000 0.000000 0.000000 +11.142857142857142 0.000000 0.000000 +11.160714285714286 0.000000 0.000000 +11.178571428571429 0.000000 0.000000 +11.196428571428571 0.000000 0.000000 +11.214285714285714 0.000000 0.000000 +11.232142857142858 0.000000 0.000000 +11.250000000000000 0.000000 0.000000 +11.267857142857142 0.000000 0.000000 +11.285714285714286 0.000000 0.000000 +11.303571428571429 0.000000 0.000000 +11.321428571428571 0.000000 0.000000 +11.339285714285714 0.000000 0.000000 +11.357142857142858 0.000000 0.000000 +11.375000000000000 0.000000 0.000000 +11.392857142857142 0.000000 0.000000 +11.410714285714286 0.000000 0.000000 +11.428571428571429 0.000000 0.000000 +11.446428571428571 0.000000 0.000000 +11.464285714285714 0.000000 0.000000 +11.482142857142858 0.000000 0.000000 +11.500000000000000 0.000000 0.000000 +11.517857142857142 0.000000 0.000000 +11.535714285714286 0.000000 0.000000 +11.553571428571429 0.000000 0.000000 +11.571428571428571 0.000000 0.000000 +11.589285714285714 0.000000 0.000000 +11.607142857142858 0.000000 0.000000 +11.625000000000000 0.000000 0.000000 +11.642857142857142 0.000000 0.000000 +11.660714285714286 0.000000 0.000000 +11.678571428571429 0.000000 0.000000 +11.696428571428571 0.000000 0.000000 +11.714285714285714 0.000000 0.000000 +11.732142857142858 0.000000 0.000000 +11.750000000000000 0.000000 0.000000 +11.767857142857142 0.000000 0.000000 +11.785714285714286 0.000000 0.000000 +11.803571428571429 0.000000 0.000000 +11.821428571428571 0.000000 0.000000 +11.839285714285714 0.000000 0.000000 +11.857142857142858 0.000000 0.000000 +11.875000000000000 0.000000 0.000000 +11.892857142857142 0.000000 0.000000 +11.910714285714286 0.000000 0.000000 +11.928571428571429 0.000000 0.000000 +11.946428571428571 0.000000 0.000000 +11.964285714285714 0.000000 0.000000 +11.982142857142858 0.000000 0.000000 +12.000000000000000 0.000000 0.000000 +12.017857142857142 0.000000 0.000000 +12.035714285714286 0.000000 0.000000 +12.053571428571429 0.000000 0.000000 +12.071428571428571 0.000000 0.000000 +12.089285714285714 0.000000 0.000000 +12.107142857142858 0.000000 0.000000 +12.125000000000000 0.000000 0.000000 +12.142857142857142 0.000000 0.000000 +12.160714285714286 0.000000 0.000000 +12.178571428571429 0.000000 0.000000 +12.196428571428571 0.000000 0.000000 +12.214285714285714 0.000000 0.000000 +12.232142857142858 0.000000 0.000000 +12.250000000000000 0.000000 0.000000 +12.267857142857142 0.000000 0.000000 +12.285714285714286 0.000000 0.000000 +12.303571428571429 0.000000 0.000000 +12.321428571428571 0.000000 0.000000 +12.339285714285714 0.000000 0.000000 +12.357142857142858 0.000000 0.000000 +12.375000000000000 0.000000 0.000000 +12.392857142857142 0.000000 0.000000 +12.410714285714286 0.000000 0.000000 +12.428571428571429 0.000000 0.000000 +12.446428571428571 0.000000 0.000000 +12.464285714285714 0.000000 0.000000 +12.482142857142858 0.000000 0.000000 +12.500000000000000 0.000000 0.000000 +12.517857142857142 0.000000 0.000000 +12.535714285714286 0.000000 0.000000 +12.553571428571429 0.000000 0.000000 +12.571428571428571 1.000000 0.000000 +12.589285714285714 27.000000 0.000000 +12.607142857142858 263.000000 0.000000 +12.625000000000000 932.000000 0.000000 +12.642857142857142 1000.000000 0.000000 +12.660714285714286 1000.000000 0.000000 +12.678571428571429 1000.000000 0.000000 +12.696428571428571 1000.000000 0.000000 +12.714285714285714 1000.000000 0.000000 +12.732142857142858 1000.000000 0.000000 +12.750000000000000 1000.000000 0.000000 +12.767857142857142 1000.000000 0.000000 +12.785714285714286 1000.000000 0.000000 +12.803571428571429 1000.000000 0.000000 +12.821428571428571 1000.000000 0.000000 +12.839285714285714 1000.000000 0.000000 +12.857142857142858 1000.000000 0.000000 +12.875000000000000 1000.000000 0.000000 +12.892857142857142 1000.000000 0.000000 +12.910714285714286 1000.000000 0.000000 +12.928571428571429 1000.000000 0.000000 +12.946428571428571 1000.000000 0.000000 +12.964285714285714 1000.000000 0.000000 +12.982142857142858 1000.000000 0.000000 +13.000000000000000 1000.000000 0.000000 +13.017857142857142 1000.000000 0.000000 +13.035714285714286 1000.000000 0.000000 +13.053571428571429 1000.000000 0.000000 +13.071428571428571 1000.000000 0.000000 +13.089285714285714 1000.000000 0.000000 +13.107142857142858 1000.000000 0.000000 +13.125000000000000 1000.000000 0.000000 +13.142857142857142 1000.000000 0.000000 +13.160714285714286 1000.000000 0.000000 +13.178571428571429 1000.000000 0.000000 +13.196428571428571 1000.000000 0.000000 +13.214285714285714 1000.000000 0.000000 +13.232142857142858 1000.000000 0.000000 +13.250000000000000 1000.000000 0.000000 +13.267857142857142 1000.000000 0.000000 +13.285714285714286 1000.000000 0.000000 +13.303571428571429 1000.000000 0.000000 +13.321428571428571 1000.000000 0.000000 +13.339285714285714 1000.000000 0.000000 +13.357142857142858 1000.000000 0.000000 +13.375000000000000 1000.000000 0.000000 +13.392857142857142 1000.000000 0.000000 +13.410714285714286 1000.000000 0.000000 +13.428571428571429 1000.000000 0.000000 +13.446428571428571 1000.000000 0.000000 +13.464285714285714 1000.000000 0.000000 +13.482142857142858 1000.000000 0.000000 +13.500000000000000 1000.000000 0.000000 +13.517857142857142 1000.000000 0.000000 +13.535714285714286 1000.000000 0.000000 +13.553571428571429 1000.000000 0.000000 +13.571428571428571 1000.000000 0.000000 +13.589285714285714 1000.000000 0.000000 +13.607142857142858 1000.000000 0.000000 +13.625000000000000 1000.000000 0.000000 +13.642857142857142 1000.000000 0.000000 +13.660714285714286 1000.000000 0.000000 +13.678571428571429 1000.000000 0.000000 +13.696428571428571 1000.000000 0.000000 +13.714285714285714 1000.000000 0.000000 +13.732142857142858 1000.000000 0.000000 +13.750000000000000 1000.000000 0.000000 +13.767857142857142 1000.000000 0.000000 +13.785714285714286 1000.000000 0.000000 +13.803571428571429 1000.000000 0.000000 +13.821428571428571 1000.000000 0.000000 +13.839285714285714 1000.000000 0.000000 +13.857142857142858 1000.000000 0.000000 +13.875000000000000 1000.000000 0.000000 +13.892857142857142 1000.000000 0.000000 +13.910714285714286 1000.000000 0.000000 +13.928571428571429 1000.000000 0.000000 +13.946428571428571 1000.000000 0.000000 +13.964285714285714 1000.000000 0.000000 +13.982142857142858 1000.000000 0.000000 +14.000000000000000 1000.000000 0.000000 +14.017857142857142 1000.000000 0.000000 +14.035714285714286 1000.000000 0.000000 +14.053571428571429 1000.000000 0.000000 +14.071428571428571 1000.000000 0.000000 +14.089285714285714 1000.000000 0.000000 +14.107142857142858 1000.000000 0.000000 +14.125000000000000 1000.000000 0.000000 +14.142857142857142 1000.000000 0.000000 +14.160714285714286 1000.000000 0.000000 +14.178571428571429 1000.000000 0.000000 +14.196428571428571 1000.000000 0.000000 +14.214285714285714 1000.000000 0.000000 +14.232142857142858 1000.000000 0.000000 +14.250000000000000 1000.000000 0.000000 +14.267857142857142 1000.000000 0.000000 +14.285714285714286 1000.000000 0.000000 +14.303571428571429 1000.000000 0.000000 +14.321428571428571 1000.000000 0.000000 +14.339285714285714 1000.000000 0.000000 +14.357142857142858 1000.000000 0.000000 +14.375000000000000 1000.000000 0.000000 +14.392857142857142 1000.000000 0.000000 +14.410714285714286 1000.000000 0.000000 +14.428571428571429 1000.000000 0.000000 +14.446428571428571 1000.000000 0.000000 +14.464285714285714 1000.000000 0.000000 +14.482142857142858 1000.000000 0.000000 +14.500000000000000 1000.000000 0.000000 +14.517857142857142 1000.000000 0.000000 +14.535714285714286 1000.000000 0.000000 +14.553571428571429 1000.000000 0.000000 +14.571428571428571 1000.000000 0.000000 +14.589285714285714 1000.000000 0.000000 +14.607142857142858 1000.000000 0.000000 +14.625000000000000 1000.000000 0.000000 +14.642857142857142 1000.000000 0.000000 +14.660714285714286 1000.000000 0.000000 +14.678571428571429 1000.000000 0.000000 +14.696428571428571 1000.000000 0.000000 +14.714285714285714 1000.000000 0.000000 +14.732142857142858 1000.000000 0.000000 +14.750000000000000 1000.000000 0.000000 +14.767857142857142 1000.000000 0.000000 +14.785714285714286 1000.000000 0.000000 +14.803571428571429 1000.000000 0.000000 +14.821428571428571 1000.000000 0.000000 +14.839285714285714 1000.000000 0.000000 +14.857142857142858 1000.000000 0.000000 +14.875000000000000 1000.000000 0.000000 +14.892857142857142 1000.000000 0.000000 +14.910714285714286 1000.000000 0.000000 +14.928571428571429 1000.000000 0.000000 +14.946428571428571 1000.000000 0.000000 +14.964285714285714 1000.000000 0.000000 +14.982142857142858 1000.000000 0.000000 +15.000000000000000 1000.000000 0.000000 +15.017857142857142 1000.000000 0.000000 +15.035714285714286 1000.000000 0.000000 +15.053571428571429 1000.000000 0.000000 +15.071428571428571 1000.000000 0.000000 +15.089285714285714 1000.000000 0.000000 +15.107142857142858 1000.000000 0.000000 +15.125000000000000 1000.000000 0.000000 +15.142857142857142 1000.000000 0.000000 +15.160714285714286 1000.000000 0.000000 +15.178571428571429 1000.000000 0.000000 +15.196428571428571 1000.000000 0.000000 +15.214285714285714 1000.000000 0.000000 +15.232142857142858 1000.000000 0.000000 +15.250000000000000 1000.000000 0.000000 +15.267857142857142 1000.000000 0.000000 +15.285714285714286 1000.000000 0.000000 +15.303571428571429 1000.000000 0.000000 +15.321428571428571 1000.000000 0.000000 +15.339285714285714 1000.000000 0.000000 +15.357142857142858 1000.000000 0.000000 +15.375000000000000 1000.000000 0.000000 +15.392857142857142 1000.000000 0.000000 +15.410714285714286 1000.000000 0.000000 +15.428571428571429 1000.000000 0.000000 +15.446428571428571 1000.000000 0.000000 +15.464285714285714 1000.000000 0.000000 +15.482142857142858 1000.000000 0.000000 +15.500000000000000 1000.000000 0.000000 +15.517857142857142 1000.000000 0.000000 +15.535714285714286 1000.000000 0.000000 +15.553571428571429 1000.000000 0.000000 +15.571428571428571 1000.000000 0.000000 +15.589285714285714 1000.000000 0.000000 +15.607142857142858 1000.000000 0.000000 +15.625000000000000 1000.000000 0.000000 +15.642857142857142 1000.000000 0.000000 +15.660714285714286 1000.000000 0.000000 +15.678571428571429 1000.000000 0.000000 +15.696428571428571 1000.000000 0.000000 +15.714285714285714 1000.000000 0.000000 +15.732142857142858 1000.000000 0.000000 +15.750000000000000 1000.000000 0.000000 +15.767857142857142 1000.000000 0.000000 +15.785714285714286 1000.000000 0.000000 +15.803571428571429 1000.000000 0.000000 +15.821428571428571 1000.000000 0.000000 +15.839285714285714 1000.000000 0.000000 +15.857142857142858 1000.000000 0.000000 +15.875000000000000 1000.000000 0.000000 +15.892857142857142 1000.000000 0.000000 +15.910714285714286 1000.000000 0.000000 +15.928571428571429 1000.000000 0.000000 +15.946428571428571 1000.000000 0.000000 +15.964285714285714 1000.000000 0.000000 +15.982142857142858 1000.000000 0.000000 +16.000000000000000 1000.000000 0.000000 +Test Clock Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 diff --git a/test/input/slavelogs/main/525_245_longrun.txt b/test/input/slavelogs/main/525_245_longrun.txt new file mode 100644 index 0000000..ae73bf8 --- /dev/null +++ b/test/input/slavelogs/main/525_245_longrun.txt @@ -0,0 +1,3641 @@ + +=============== Test QAPIp Start =============== +PSBID :525 +set_address done +TX_mode set as bitbanging mode 2'b10 +SL_master done +initial setup done +device_id = c22018 +send command Write_enable +erace done +0 th read status = 0 +wip check ok +write data loop-> start_address = a00000 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 0 parameter write done + write data loop-> start_address = a00001 : data = 525 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00003 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00005 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00007 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00009 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0000b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0000d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0000f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00011 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00013 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 10 parameter write done + write data loop-> start_address = a00015 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00017 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00019 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0001b : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0001d : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0001f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00021 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00023 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00025 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00027 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 20 parameter write done + write data loop-> start_address = a00029 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0002b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0002d : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0002f : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00031 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00033 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00035 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00037 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00039 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0003b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 30 parameter write done + write data loop-> start_address = a0003d : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0003f : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00041 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00043 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00045 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00047 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00049 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0004b : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0004d : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0004f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 40 parameter write done + write data loop-> start_address = a00051 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00053 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00055 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00057 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00059 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0005b : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0005d : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0005f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00061 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00063 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 50 parameter write done + write data loop-> start_address = a00065 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00067 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00069 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0006b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0006d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0006f : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00071 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00073 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00075 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00077 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 60 parameter write done + write data loop-> start_address = a00079 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0007b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0007d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0007f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00081 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00083 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00085 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00087 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00089 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0008b : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 70 parameter write done + write data loop-> start_address = a0008d : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0008f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00091 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00093 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00095 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00097 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00099 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0009b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0009d : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0009f : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 80 parameter write done + write data loop-> start_address = a000a1 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a7 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000a9 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ab : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ad : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000af : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b1 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 90 parameter write done + write data loop-> start_address = a000b5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000b9 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000bb : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000bd : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000bf : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c3 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c5 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000c7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 100 parameter write done + write data loop-> start_address = a000c9 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000cb : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000cd : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000cf : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d5 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d7 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000d9 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000db : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 110 parameter write done + write data loop-> start_address = a000dd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000df : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e1 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e3 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e4 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e8 : data = 0 : length = 0 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000e8 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ea : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000ec : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 120 parameter write done + write data loop-> start_address = a000ee : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f0 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f2 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f4 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f6 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000f8 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000fa : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000fc : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a000fe : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00100 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 130 parameter write done + write data loop-> start_address = a00102 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00104 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00106 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00108 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010a : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010d : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0010f : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00110 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00111 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 140 parameter write done + write data loop-> start_address = a00112 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00113 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00114 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00115 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00116 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00117 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00118 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00119 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 150 parameter write done + write data loop-> start_address = a0011c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011d : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011e : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0011f : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 0 parameter write done + write data loop-> start_address = a00120 : data = 525 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00122 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00124 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00126 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00128 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0012a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0012c : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0012e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00130 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00132 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 10 parameter write done + write data loop-> start_address = a00134 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00136 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00138 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0013a : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0013c : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0013e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00140 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00142 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00144 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00146 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 20 parameter write done + write data loop-> start_address = a00148 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0014a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0014c : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0014e : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00150 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00152 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00154 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00156 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00158 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0015a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 30 parameter write done + write data loop-> start_address = a0015c : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0015e : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00160 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00162 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00164 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00166 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00168 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0016a : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0016c : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0016e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 40 parameter write done + write data loop-> start_address = a00170 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00172 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00174 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00176 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00178 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0017a : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0017c : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0017e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00180 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00182 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 50 parameter write done + write data loop-> start_address = a00184 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00186 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00188 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0018a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0018c : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0018e : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00190 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00192 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00194 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00196 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 60 parameter write done + write data loop-> start_address = a00198 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0019a : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0019c : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0019e : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a0 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a2 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a4 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001a8 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001aa : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 70 parameter write done + write data loop-> start_address = a001ac : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ae : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b0 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b2 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b4 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001b8 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ba : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001bc : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001be : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 80 parameter write done + write data loop-> start_address = a001c0 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c2 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c4 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c6 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001c8 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ca : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001cc : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ce : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d0 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d2 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 90 parameter write done + write data loop-> start_address = a001d4 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001d8 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001da : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001dc : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001de : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e0 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e2 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e4 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001e6 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 100 parameter write done + write data loop-> start_address = a001e8 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ea : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ec : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001ee : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f0 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f2 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f4 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f6 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001f8 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001fa : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 110 parameter write done + write data loop-> start_address = a001fc : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a001fe : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00200 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00202 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00203 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00205 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00207 : data = 0 : length = 0 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00207 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00209 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0020b : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 120 parameter write done + write data loop-> start_address = a0020d : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0020f : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00211 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00213 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00215 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00217 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00219 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0021b : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0021d : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0021f : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 130 parameter write done + write data loop-> start_address = a00221 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00223 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00225 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00227 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00229 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022c : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022e : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0022f : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00230 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 140 parameter write done + write data loop-> start_address = a00231 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00232 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00233 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00234 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00235 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00236 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00237 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00238 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00239 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 150 parameter write done + write data loop-> start_address = a0023b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023d : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0023e : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 0 parameter write done + write data loop-> start_address = a0023f : data = 525 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00241 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00243 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00245 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00247 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00249 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0024b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0024d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0024f : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00251 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 10 parameter write done + write data loop-> start_address = a00253 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00255 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00257 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00259 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0025b : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0025d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0025f : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00261 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00263 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00265 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 20 parameter write done + write data loop-> start_address = a00267 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00269 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0026b : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0026d : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0026f : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00271 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00273 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00275 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00277 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00279 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 30 parameter write done + write data loop-> start_address = a0027b : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0027d : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0027f : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00281 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00283 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00285 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00287 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00289 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0028b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0028d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 40 parameter write done + write data loop-> start_address = a0028f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00291 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00293 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00295 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00297 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00299 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0029b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0029d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0029f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 50 parameter write done + write data loop-> start_address = a002a3 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a5 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a7 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002a9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ab : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ad : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002af : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b3 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b5 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 60 parameter write done + write data loop-> start_address = a002b7 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002b9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002bb : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002bd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002bf : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c1 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c3 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002c9 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 70 parameter write done + write data loop-> start_address = a002cb : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002cd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002cf : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d1 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d3 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d7 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002d9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002db : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002dd : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 80 parameter write done + write data loop-> start_address = a002df : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e5 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e7 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002e9 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002eb : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ed : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ef : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f1 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 90 parameter write done + write data loop-> start_address = a002f3 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f5 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f7 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002f9 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002fb : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002fd : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a002ff : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00301 : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00303 : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00305 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 100 parameter write done + write data loop-> start_address = a00307 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00309 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0030b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0030d : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0030f : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00311 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00313 : data = 2800 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00315 : data = 14 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00317 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00319 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 110 parameter write done + write data loop-> start_address = a0031b : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0031d : data = b300 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0031f : data = 93b8 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00321 : data = 1 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00322 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00324 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00326 : data = 0 : length = 0 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00326 : data = 0 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00328 : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0032a : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 120 parameter write done + write data loop-> start_address = a0032c : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0032e : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00330 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00332 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00334 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00336 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00338 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0033a : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0033c : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0033e : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +No. 130 parameter write done + write data loop-> start_address = a00340 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00342 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00344 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00346 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00348 : data = e6 : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034b : data = ffff : length = 2 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034d : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034e : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0034f : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 140 parameter write done + write data loop-> start_address = a00350 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00351 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00352 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00353 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00354 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00355 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00356 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00357 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00358 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a00359 : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +No. 150 parameter write done + write data loop-> start_address = a0035a : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0035b : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +write data loop-> start_address = a0035c : data = 0 : length = 1 +send command Write_enable +0 th read status = 0 +wip check ok +SL_master done +TX_mode set as bitbanging mode 2'b10 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 0 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 2048 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5000 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x70 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 2048 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 0 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 0 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x70 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 2048 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5000 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x70 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5000 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 2048 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 2048 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 2048 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 0 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 2048 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 1024 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 2048 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 0 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 3072 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 2048 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 1024 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x70 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 + +=============== Test ASDTP Start =============== +reconfig_done = 0 +always_hit_flag = 2048 +Autoreconfig fail +ASDTP : 10 times reset : result = 2 +reconfig_done = 0 +always_hit_flag = 3072 + +------- Done check ------- +Si_done = 0x1 +LOLB_in = 0x1 +PPconfig_done = 0xff +PPconfig_error = 0x60 +PLLLD_fail_counter = 0xa +PPconfig_fail_counter = 0x0 +PP1_PLLLD = 0x1001 +PP2_PLLLD = 0x2001 +PP3_PLLLD = 0x3001 +PP4_PLLLD = 0x4001 +PP5_PLLLD = 0x5001 +PP6_PLLLD = 0x6000 +PP7_PLLLD = 0x7001 +PP8_PLLLD = 0x8001 + +=============== Test Recov Start =============== +Test Recov Result = 1 diff --git a/test/runtests.jl b/test/runtests.jl index 2f8df25..2e6526e 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,5 +1,6 @@ using Test using PSBoardDataBase +using StaticArrays using CSV, DataFrames using SQLite, DBInterface using Dates @@ -45,6 +46,64 @@ true || include("../src/PSBoardDataBase.jl") ) == 22 end + @testset "Slave Log parser" begin + lines = Iterators.Stateful( + Iterators.drop(eachline("./input/slavelogs/main/430_100.txt"), 2280), + ) + result_asdtp = PSBoardDataBase.SlaveLogParser.parse_asdtp_section!(lines) + # target = PSBoardDataBase.SlaveLogParser.AsdtpResult( + # 1, + # 0, + # true, + # fill(PSBoardDataBase.SlaveLogParser.AsdtpMeasurement.(fill((0, 1, 0), 32)), 8), + # 0, + # 1, + # 1, + # 0, + # 0x1, + # 0x1, + # 0xff, + # 0x0, + # 0x0, + # 0x0, + # MVector((0x1001, 0x2001, 0x3001, 0x4001, 0x5001, 0x6001, 0x7001, 0x8001)), + # ) + # @info "" target == result_asdtp zip(result_asdtp.pp_pllds, target.pp_pllds) |> + # collect result_asdtp.pp_pllds == target.pp_pllds Iterators.filter( + # x -> x[1] != x[2], + # zip(result_asdtp.pp_pllds, target.pp_pllds), + # ) |> collect + # @info "" map(fieldnames(typeof(result_asdtp))) do field + # (; field, diff = getfield(result_asdtp, field) == getfield(target, field)) + # end + + @test result_asdtp == PSBoardDataBase.SlaveLogParser.AsdtpResult( + 1, + 0, + true, + fill(PSBoardDataBase.SlaveLogParser.AsdtpMeasurement.(fill((0, 1, 0), 32)), 8), + 0, + 1, + 1, + 0, + 0x1, + 0x1, + 0xff, + 0x0, + 0x0, + 0x0, + MVector((0x1001, 0x2001, 0x3001, 0x4001, 0x5001, 0x6001, 0x7001, 0x8001)), + ) + @info "pass" + lines = Iterators.Stateful( + Iterators.drop(eachline("./input/slavelogs/main/525_244.txt"), 2280), + ) + PSBoardDataBase.SlaveLogParser.parse_asdtp_section!(lines) + # PSBoardDataBase.SlaveLogParser.parse_slavelog_file( + # "./input/slavelogs/main/525_244.txt", + # ) + end + @testset "Download data csv" begin out = tempname() @test CSV.read(